MySQL數據庫隻監聽某個特定地址的方法

問:怎樣才能指定MySQL隻監聽某個特定地址?


答:比較常見的辦法是,在my.cnf之mysqld節,添加bind-address=127.0.0.1。但是也有人按照下面的辦法來做。


為瞭數據的安全,可以考慮讓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

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *