/************************************************************************* * CentOS 6.6 MySQL Install * Description: * Install MySQL database on VPS for some time boring use. * 2016-11-26 Shenzhen Nanshan Ping Shan village Zengjianfeng ********************************************************* ***************/One, reference document: "Full Tutorial" under CentOS installation via yum install MySQL https://lvwenhan.com/web-back/371.htmlsecond, MySQL installation, startup:1. Installation: Yum-y install mysql-server MySQL mysql-devel rpm-qi mysql-Server2. Set up MySQL service with system boot self-boot: chkconfig mysqld on3confirm MySQL self-boot: chkconfig--List Mysqld4. Start the MySQL service:/etc/rc.d/init.d/mysqld Start5. Set Root password: mysqladmin-U root Password"your passwd" 6. Telnet: Reference: "ERROR1130: Host ' ... isNot allowed to connect to ThisMySQL Server http://www.cnblogs.com/zengjfgit/p/5897385.html
CentOS 6.6 MySQL Install