OpenFPC
OpenFPC copied to clipboard
OpenFPC Connection Uploader fails to start, no db user
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;
oops, it should be: mysql> create user 'openfpc' identified by 'openfpc'; mysql> grant all privileges on ofpc_session_default to'openfpc'
oops