環境:擁有一台主機,安裝好WP,並擁有外連IP、DNS之下
想要在同一個主機空間的情況下,擁有多個外連IP或者DNS方法
以下在沒有DNS的情況下,用IP做外連顯示
一台主機一定有一組IP( 192.168.**.****
)
列出所有listent 的 port1 2 3 4 5 6 7 8 9 10 11
| [root@test-jimmy ~]# netstat -nltp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 2393/php-fpm tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 2802/mysqld tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 3194/nginx tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 3263/vsftpd tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1090/sshd tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1170/master tcp 0 0 :::22 :::* LISTEN 1090/sshd tcp 0 0 ::1:25 :::* LISTEN 1170/master
|
由於用nginx作為web sever時
並且與wordpress的php溝通
必需要啟動php-fpm這個9000 port
port 3306 =>mysql
port 80 =>http連線
port 21 =>ftp連線