I’m trying to install mybb on a server but the admin is taking too long to respond. I have all the information I need except the database name. Is there a default name for mysql on a linux server?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no default database.
A fresh MySQL server install will have 0 databases. The install script will run
mysql_install_dbafter the server is running to create amysqldatabase, which MySQL uses to store users and privileges. Don’t put your data there.You can create your own databases by issuing
CREATE DATABASE [name]queries if your user has permission.