mysql默认数据库名称_默认的MySQL数据库名称

bd96500e110b49cbb3cd949968f18be7.png

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?

解决方案

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.


版权声明:本文为weixin_36078245原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。