Install MySQL on CentOS 6 Server


This tutorial provides step-by-step instructions for installing MySQL database server on CentOS 6.

Install MySQL

Login to the server as root user

To install the database software, run the following command:

$ yum install mysql-server

Start MySQL Server

To start the MySQL server, run the following command:

$ /sbin/service mysqld start

Secure the MySQL

To secure the MySQL installation, you should remove the anonymous user created during installation. To do so, run the following command:

$ /usr/bin/mysql_secure_installation

Ensure MySQL Starts on Boot

To ensure that your MySQL database automatically starts when the server is rebooted, run the following command:

$ chkconfig mysqld on

Now you have successfully installed MySQL, started the MySQL server, removed anonymous user, and set the MySQL server to start automatically at reboot.

  • centos 6, mysql
  • 156 brukere syntes dette svaret var til hjelp
Var dette svaret til hjelp?

Related Articles

View Server PHP Environment with phpinfo.php

The phpinfo() function outputs a huge amount of information about the system you're using, such...

How to Change Root Password Using SSH

This article explains the method of changing the root password on a Linux Server using SSH....

How to Create Sudo User on CentOS

This article provides step-by-step setup guide for adding Sudo user to CentOS system. The sudo...

How to Use Sudo

This article provides a guide to using a Sudo user on CentOS server. From the command line,...

Set Server Time Zones with Timedatectl

This article provides a guide to setting the server time and server time zone settings using...