1.] edited the entry in /etc/mysql/my.cnf from:
Code: Select all
#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address = 127.0.0.1
#
Code: Select all
#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
# bind-address = 127.0.0.1
#
2.] added the the following entry in MySQL:
Code: Select all
mysql> GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP
-> On zm.*
-> TO 'zmuser'@'%'
-> IDENTIFIED BY 'zmpass';
Query OK, 0 rows affected (0.00 sec)
And now?, any idea?