I get this error installing gestioip. It connects to the DB as root, it creates a db (gestioip db) then it creates an user (the users: gestioip) but this user can't access the DB. (all this via browser on remote machine)
I've tried like similar posts state the following:
GRANT ALL PRIVILEGES ON dbname.* TO 'gestioip'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION;
FLUSH PRIVILEGES;
With no effect giving the error present on the topic. If I login the in console with:
mysql -u gestioip -p password
it works.
Needless to say that I've followed all the tutorials/installation manuals of the application.
The access to the DB is following:
gestioip@localhost
gestioip@127.0.0.1
gestioip@localhost.localdomain
Also first line in /etc/hosts:
127.0.0.1 localhost
EDIT: I installed a ubuntu with GUI and I'm doing the install from the LOCAL browser so no remote problems should arise.