Error creating the database using MySQL Management

The process will remove databases for sure?

Let me know what is the process please
 
The problem is that i wanna try to make you delete the mysql database which is the one that store all the user/pass for access mysql, that means that once removed none of the website would work untill we reinstall mysql and reimport all the mysql related stuff from da backups.

And it's quite risking to do that via forum, i'm leaving the office in 20 minutes and i'll hardly be available after, so maybe we should think about do that tomorrow and check if someone else add some ideas to fix the issue?

Regards
 
DA Support told me to check /etc/my.cnf

There was some code:
[mysqld]
local-infile=0
innodb_file_per_table


When I delete it and save, the file changed to my.cnf~ and new my.cnf (clean) become.

When I login the phpmyadmin with root, there is error:
" The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. Find out why.
Or alternately go to 'Operations' tab of any database to set it up there."
 
when I try to build mysql:

Ensuring local-infile is disabled for security reasons in MySQL configuration file...
Starting MySQL.... [ OK ]
Giving mysqld a few seconds to start up...
Looking for 'mysql' as: /usr/bin/mysql
Looking for 'mysqlcheck' as: /usr/bin/mysqlcheck
Error: Failed while fetching Server version! Could be due to unauthorized access.
FATAL ERROR: Upgrade failed
/usr/bin/mysqlcheck: Got error: 1524: Plugin '*3109ED3B75F12136ABCCE0264F36AD0F1F1A959A' is not loaded when trying to connect
cp: `/usr/lib/libmysqlclient.so' and `/usr/lib/mysql/libmysqlclient.so' are the same file
 
I just encountered these precise symptoms when upgrading from 5.5 to 5.6, and it turned out to be a service reachability issue.

Even though the cli MySQL client could connect to my local DB instance with only a -u and -p provided, I also needed to specify -h 127.0.0.1 for mysql_upgrade as it was attempting a socket file connection and failing miserably in the attempt.
 
Last edited:
Back
Top