how to install mysql on centos vps

How to Install MySQL on CentOS VPS

If you’re using a CentOS VPS and looking to install MySQL, you’ve come to the right place. MySQL is a popular open-source relational database management system that is essential for many web applications. In this guide, we’ll walk you through the steps to install MySQL on your CentOS VPS.

Step 1: Update your CentOS VPS

Before installing MySQL, it’s important to ensure that your CentOS VPS is up to date. You can update your system using the following command:

yum update

Step 2: Install the MySQL Software Repository

Next, you’ll need to install the MySQL software repository on your CentOS VPS. This can be done by running the following command:

sudo yum localinstall https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm

Step 3: Install MySQL Server

Once the MySQL software repository is installed, you can proceed to install the MySQL server. Use the following command to do so:

sudo yum install mysql-community-server

Step 4: Start MySQL Service

After the installation is complete, start the MySQL service and enable it to start on boot with the following commands:

sudo systemctl start mysqld sudo systemctl enable mysqld

Step 5: Secure MySQL Installation

It’s essential to secure your MySQL installation to protect your data. Run the MySQL secure installation script and follow the prompts to set a root password, remove anonymous users, restrict root login, and remove the test database.

sudo mysql_secure_installation

Step 6: Access MySQL Server

Finally, you can access your MySQL server by logging in with the root user and the password you set during the secure installation. Use the following command:

mysql -u root -p

That’s it! You’ve successfully installed MySQL on your CentOS VPS. You can now start using MySQL to create databases, tables, and manage your data effectively. If you encounter any issues during the installation process, feel free to refer to the MySQL documentation or seek help from the community.

Happy coding!

Comments