In this guide, we’ll walk you through installing all of these components (except for Linux, which is already installed as your OS when you create the server).
Install the Extra Packages for Enterprise Linux Repository (or EPEL for short):sudo yum install epel-release
Run a yum update to sync your packages with the new EPEL repository:
sudo yum update
Install MySQL:
sudo yum install mysql-server
Activate MySQL:
sudo service mysqld start
Configure your MySQL installation:
sudo /usr/bin/mysql_secure_installation
Make it so that MySQL will start automatically on server reboot: Continue reading “LEMP on Centos 6” »