在my.cnf之mysqld節,添加bind-address=127.0.0.1。可以使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