OpenFPC icon indicating copy to clipboard operation
OpenFPC copied to clipboard

OpenFPC Connection Uploader fails to start, no db user

Open john-r2 opened this issue 6 years ago • 2 comments

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;

john-r2 avatar Dec 17 '18 22:12 john-r2

oops, it should be: mysql> create user 'openfpc' identified by 'openfpc'; mysql> grant all privileges on ofpc_session_default to'openfpc'

john-r2 avatar Dec 18 '18 15:12 john-r2

oops

john-r2 avatar Dec 18 '18 15:12 john-r2