D davidd1 Verified User Joined Jan 31, 2013 Messages 102 Feb 5, 2015 #1 Hello and sorry for my English. I have a problem with Directadmin + mySQL. I use da v1.47.0 with custombuild v2 - Centos 5 When i open new database i always have another database table call "test". why?
Hello and sorry for my English. I have a problem with Directadmin + mySQL. I use da v1.47.0 with custombuild v2 - Centos 5 When i open new database i always have another database table call "test". why?
zEitEr Super Moderator Joined Apr 11, 2005 Messages 15,366 Location www.poralix.com Feb 5, 2015 #2 Hello, That's created by default with MySQL installation. Run this: [h=3] Code: mysql_secure_installation [/h]as root in console to remove it. Read more http://dev.mysql.com/doc/refman/5.5/en/mysql-secure-installation.html
Hello, That's created by default with MySQL installation. Run this: [h=3] Code: mysql_secure_installation [/h]as root in console to remove it. Read more http://dev.mysql.com/doc/refman/5.5/en/mysql-secure-installation.html
D davidd1 Verified User Joined Jan 31, 2013 Messages 102 Feb 6, 2015 #3 I need a mysql root password ? i try ENTER to none = not work i try this password : /usr/local/directadmin/conf/mysql.conf = not work
I need a mysql root password ? i try ENTER to none = not work i try this password : /usr/local/directadmin/conf/mysql.conf = not work
zEitEr Super Moderator Joined Apr 11, 2005 Messages 15,366 Location www.poralix.com Feb 6, 2015 #4 MySQL root's password on Directadmin powered server can be discovered with the following command: Code: grep ^mysql= /usr/local/directadmin/scripts/setup.txt | cut -d\= -f2 There in /usr/local/directadmin/scripts/setup.txt you can see other default passwords which are used on your server.
MySQL root's password on Directadmin powered server can be discovered with the following command: Code: grep ^mysql= /usr/local/directadmin/scripts/setup.txt | cut -d\= -f2 There in /usr/local/directadmin/scripts/setup.txt you can see other default passwords which are used on your server.
D davidd1 Verified User Joined Jan 31, 2013 Messages 102 Feb 7, 2015 #5 Thank you very much - Work 100%!!!