service iptables status
輸出:
iptables: firewall is not running.
證明你的防火牆沒有開啟可以。
如果輸出:為一些規則
table: filter
chain input (policy accept)
num target prot opt source destination
1 accept all -- 0.0.0.0/0 0.0.0.0/0 state related,established
2 accept icmp -- 0.0.0.0/0 0.0.0.0/0
3 accept all -- 0.0.0.0/0 0.0.0.0/0
4 accept tcp -- 0.0.0.0/0 0.0.0.0/0 state new tcp dpt:22
5 reject all -- 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
6 accept tcp -- 0.0.0.0/0 0.0.0.0/0 state new tcp dpt:3306
chain forward (policy accept)
num target prot opt source destination
1 reject all -- 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
chain output (policy accept)
num target prot opt source destination
那麼這裡表示你的防火牆已經啟動並且使用了一些規則。
service iptables stop
vim /etc/sysconfig/iptables
新增下面這段話
須新增到22埠規則後面即可。
mysql -uroot -p
登入資料庫
grant all privileges on *.* to 'myuser'@'%' identified by 'mypassword' with grant option;
flush privileges;
重啟 mysql服務,和防火牆服務,即可。 centos6 9配置mysql 並且設定遠端登入
第1步 yum安裝mysql root 192 ztaos yum y install mysql server第2步 設定開機啟動 root 192 ztaos chkconfig mysqld on第3步 啟動mysql服務 root 192 ztaos service mysqld start...
CentOS6 9配置靜態IP
一 直接在配置檔案修改 etc sysconfig network scripts ifcfg eth0 device eth0 描述網絡卡對應的裝置別名 bootproto static 通過不同協議設定網絡卡獲得ip位址的方式,靜態static bootp dhcp hwaddr 08 00 2...
centos6 9安裝mysql流程
全新系統,老系統請確定解除安裝mysql無殘留。一 利用yum安裝mysql server 和 mysql devel。二 啟動mysqld服務。三 設定mysql密碼 密碼一定不能設定太簡單否則本地伺服器會出現進不去的情況 四 進入mysql並開啟mysql資料庫,修改user表開啟遠端登入許可權...