cc@openfpc:~/OpenFPC$ sudo ./openfpc --action start
Starting Daemonlogger (Default_Node)... Done
Starting OpenFPC Queue Daemon (Default_Node)... Done
Starting OpenFPC cxtracker (Default_Node)... Done
Starting OpenFPC Connection Uploader (Default_Node) ... Failed
Fix:
I found that the default session db user was not created (or left intact) after installation. fix is to add the user. this puts the user and password to match openfpc-default.conf
S mysql -u root -p
...password...
mysql> create user 'openfpc' identified by 'openfpc';
mysql> exit;