Test database

Jing

Verified User
Joined
Jul 30, 2003
Messages
85
Is it necessary to have test database for every mysql user created? Is there an option somewhere to disable that?
 
Hello,

You could probably just drop that database completely via root or da_admin.
Code:
cat /usr/local/directadmin/conf/mysql.conf
mysql -uda_admin -p
(enter password shown from cat)
mysql> DROP DATABASE test;
mysql> quit
Bye

John
 
Back
Top