禁止Mysql預設連接埠訪問Internet

來源:互聯網
上載者:User
過去查詢Mysql的時候,都見3306對所有連接埠開放著,感覺不安全。
netstat -anlp | grep mysql
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 638/mysqld
unix 2 [ ACC ] STREAM LISTENING 12305521 638/mysqld /tmp/mysql.sock


當然,也想過用Iptables來實現,不過好像還是不行。
iptables -A INPUT -p tcp -s $ANY --dport 3306 -j DROP


引用Chinaunix文章所說:
*安全配置* 為了資料的安全,可以考慮讓MySQL只守候在127.0.0.1上,這樣從Internet上就無法直接存取資料庫了。
 修改/etc/init.d/mysql檔案 在start部分找到類似下面這行 $bindir/mysqld_safe --datadir=$datadir --pid-file=$pid_file &
修改成
$bindir/mysqld_safe --datadir=$datadir --pid-file=$pid_file --bind-address=127.0.0.1 &
重起MySQL
/etc/init.d/mysql restart
最後netstat -l確認一下:
tcp 0 0 localhost:mysql *:* LISTEN
OK



而我修改/etc/init.d/mysq,找到:
把原先的
$bindir/mysqld_safe --datadir=$datadir --pid-file=$pid_file >/dev/null 2>&1 &

變為
$bindir/mysqld_safe --datadir=$datadir --pid-file=$pid_file --bind-address=127.0.0.1 &


重啟mysql:/etc/init.d/mysql restart
查看後實現:natstat -l
tcp 0 0 localhost.localdo:mysql *:* LISTEN

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.