LAMP實驗三:遠端連線MySQL

來源:互聯網
上載者:User

MySQL-Front是Windows下一款小巧的管理Mysql的應用程式. 主要特性包括多重文件介面, 文法突出, 拖拽方式的資料庫和表格, 可編輯/可增加/刪除的域, 可編輯/可插入/刪除的記錄, 可顯示的成員, 可執行檔SQL 指令碼,提供與外程式介面, 儲存資料到CSV檔案等。

 

1. 增加帳號。MySQL伺服器root帳號被配置成了禁止遠程登入,因此需要新增加一個MySQL帳號用於遠端管理:

[root@centos-server ~]$ mysql --host localhost --user root --password mysql
mysql> CREATE USER 'amonest'@'%' IDENTIFIED BY 'xxx';mysql> GRANT ALL PRIVILEGES ON *.* TO 'amonest'@'%' WITH GRANT OPTION;

 關於MySQL帳號和許可權的資訊請參考《6.3.2. Adding User Accounts》和《13.7.1.3. GRANT Syntax》。

 

2. 配置防火牆。原來的防火牆策略如下:

[root@centos-server ~]$ iptables -L -n --line-numbersChain 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    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           tcp dpt:80 state NEW 6    REJECT     all  --  0.0.0.0/0            0.0.0.0/0           reject-with icmp-host-prohibited 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 

按照下面的方式開啟MySQL的3306連接埠:

[root@centos-server ~]$ iptables -I INPUT 6 -p tcp -m tcp --dport 3306 -m state --state NEW -j ACCEPT
[root@centos-server ~]$ service iptables saveiptables: Saving firewall rules to /etc/sysconfig/iptables:[ OK ]
[root@centos-server ~]$ service iptables restartiptables: Flushing firewall rules: [ OK ]iptables: Setting chains to policy ACCEPT: filter [ OK ]iptables: Unloading modules: [ OK ]iptables: Applying firewall rules: [ OK ]

 

3. OK,現在我們開啟MySQL-Front,看看是不是出現了熟悉的Windows介面?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.