Default MySQL database name

后端 未结 4 1228
无人及你
无人及你 2021-02-15 10:44

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 mysq

4条回答
  •  抹茶落季
    2021-02-15 11:04

    There is no default database.

    A fresh MySQL server install will have 0 databases. The install script will run mysql_install_db after the server is running to create a mysql database, 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.

提交回复
热议问题