“Centos: config mysql server”版本间的差异
来自cslt Wiki
| 第21行: | 第21行: | ||
c) iptables -L -n | grep 3306 (check whether port 3306 is accept) | c) iptables -L -n | grep 3306 (check whether port 3306 is accept) | ||
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:3306 ctstate NEW | ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:3306 ctstate NEW | ||
| + | d) firewall-cmd --state (check the state of the firewall) | ||
| + | running | ||
| + | |||
| + | 6. try to access mysql from remote host | ||
| + | a) mysql -h "xxx.xxx.xxx.xxx" -u username -p | ||
2016年11月1日 (二) 07:52的版本
1. install mysql server on centos
a) wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm b) sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm c) yum install mysql-community-server d) service mysqld restart
2. set password for 'root'
a) # mysql -u root b) mysql> use mysql; c) mysql> update user set password=PASSWORD(‘your_password’) where User='root';
3. add new user
a) mysql> select host,user from user;
5. allow firewall accept port 3306
a) # firewall-cmd --add-service=mysql --permanent
success
b) # firewall-cmd --reload
success
c) iptables -L -n | grep 3306 (check whether port 3306 is accept)
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:3306 ctstate NEW
d) firewall-cmd --state (check the state of the firewall)
running
6. try to access mysql from remote host
a) mysql -h "xxx.xxx.xxx.xxx" -u username -p