How to Create a MySQL Database Using CLI & cPanel Print

  • 0

How to Create a MySQL Database Using CLI & cPanel

Learn How to Create a MySQL Database Using CLI & cPanel
If you need to create a database for your website there are multiple ways to do it. In this guide, you can learn how to create a MySQL database using the command line interface (CLI) and from cPanel. You can then being using the database or connect your software.

Create a MySQL Database Using CLI
How to Create a MySQL Database in cPanel


Create a MySQL Database Using CLI
If you are running a Linux server with MySQL but no cPanel, you can simply use the terminal to create a MySQL database, database user, and password, as well as, assign all privileges to the user for the database.


Don’t have time to read the article? Watch our walk-through video.
IMPORTANT: This guide is intended for use with our Cloud Server Hosting and other hosting plans that do not include cPanel. If your server includes cPanel, you should follow our guide on How to Create a MySQL Database Using the cPanel API.

Step 1. SSH into your server as root.
Step 2. Log into MySQL as root:
Copy
mysql -u root
Step 3. Create a new database user:
Copy
GRANT ALL PRIVILEGES ON *.* TO 'db_user'@'localhost' IDENTIFIED BY 'P@s$w0rd123!';
NOTE: Be sure to modify db_user with the actual name, you would like to give the database user, as well as, P@s$w0rd123! with the password to be given to the user.
Step 4. Log out of MySQL by typing: \q.
Step 5. Log in as the new database user you just created:
Copy
mysql -u db_user -p
NOTE: Be sure to modify db_user with the actual database user name.
Step 6. Then, type the new database user’s password and press Enter.
Create a Database in the Command Line Interface (CLI)
Step 7. Create a new database:

Copy
CREATE DATABASE db_name;
NOTE: Be sure to modify db_name with the actual name you would like to give the database.


How to Create a MySQL Database in cPanel

Don’t have time to read the full guide? Watch our walk-through video.
When you create a database, many users are unaware that there are several other tasks that you need to do as well. The new database creation process actually involves:

1. Creating a database
2. Creating a database user
3. Giving your database user access to work with your database
Luckily for us, cPanel includes a MySQL Database Wizard that walks you through each of these steps.

Creating a Database in cPanel Using the MySQL Database Wizard
Step 1. Log into your cPanel.
Step 2. Click the MySQL Database Wizard under the Databases heading.
Accessing the MySQL Database Wizard
Step 3. Next to New Database enter a name for your database and click Next Step.
Entering a Database Name
WARNING: If you receive an error message regarding the limited number of databases available, you may consider upgrading your Business Class Hosting plan.
Step 4. Enter a username, enter a password twice, then click the Create User button.
Creating a Database User
Step 5. On the next page, you’ll assign privileges for the user to the database. Check the box next to All Privileges and then click Next Step. You can also select specific privileges instead.
Providing Privileges to the Database User

You are finished when you see a message stating that the user was added to the database.
User Was Added to the Database
Congratulations! Now, you know how to create a MySQL database from the command line and using cPanel. Want to learn more about database management? Check out official MySQL documentation or our guide on How to Import MySQL Databases in Command Line.

If you don’t need cPanel, don't pay for it. Only pay for what you need with our scalable Cloud VPS Hosting.

check markCentOS, Debian, or Ubuntu check markNo Bloatware check markSSH and Root Access


Was this answer helpful?

« Back