I can get though all the steps except the last one: attempting to connect to database as admin.
The message I get is this:
Attempting to connect to database as admin BAD
Does administrative user have access to the database?
I have tried the mySQL root user, and still no luck.
Any ideas on this?
Check and install database error
Moderators: Developer, Contributor
The script is attempting to log in using the hostname, admin userid and password you provided.
It is possible that the database is receiving the connection from the local machine, not as "localhost" but as the DNS name of the web server. This also needs to be added to the databse access permissions.
It is possible that the database is receiving the connection from the local machine, not as "localhost" but as the DNS name of the web server. This also needs to be added to the databse access permissions.
Code: Select all
e.g. GRANT ALL on bugtracker.* to <adm_user>@<webserver_name> IDENTIFIED BY <password>;