I think you should use this command in mysql console:
mysql> CREATE user “yournewUser”@”localhost”;
mysql> GRANT ALL ON openfireDatabase.* TO ‘yournewUser’@’localhost’ IDENTIFIED BY ‘yourPassword’;
mysql> FLUSH PRIVILEGES;
I think you should use this command in mysql console:
mysql> CREATE user “yournewUser”@”localhost”;
mysql> GRANT ALL ON openfireDatabase.* TO ‘yournewUser’@’localhost’ IDENTIFIED BY ‘yourPassword’;
mysql> FLUSH PRIVILEGES;