Nginx起動するが80番でコネクション確立しない
以下の環境でNginxをインストールして起動を確認できるがWebページを閲覧できない状態です。
サーバー上で80番がLISTENしていることは確認できています
iptablesは現在停止している状態にしています。(原因切り分けの為)
クライアントPCからtelnetで80番ポートのコネクションが確立できない状態です。
ちなみに同条件でのAWS EC2では問題なくコネクションは確立してWebページが見れる状態になります。
Nginxのコンフィグはデフォルトの状態です。
・さくらVPS
・OS:CentOS 6.10
・Nginx 1.14 (1.16でも同症状)
・iptables (停止状態)
■iptables停止
[root@xxx hoge]# service iptables stop iptables: Setting chains to policy ACCEPT: filter [ OK ] iptables: Flushing firewall rules: [ OK ] iptables: Unloading modules: [ OK ]
■Nginxランニングを確認
[root@xxx hoge]# service nginx status nginx (pid 2108) is running...
■Nginxプロセス確認
[root@xxx hoge]# ps -aux |grep nginx Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQ root 2108 0.0 0.1 47320 1064 ? Ss Jul31 0:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf nginx 2109 0.0 0.1 47724 1804 ? S Jul31 0:00 nginx: worker process root 2409 0.0 0.0 6440 712 pts/0 S+ 00:18 0:00 grep nginx
■80ポートのLISTEN確認
[root@xxx hoge]# ss -tln State Recv-Q Send-Q Local Address:Port Peer Address:Port LISTEN 0 128 *:22 *:* LISTEN 0 100 127.0.0.1:25 *:* LISTEN 0 128 *:80 *:*
[root@xxx hoge]# lsof -i:80 -P COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME nginx 2108 root 6u IPv4 14747 0t0 TCP *:80 (LISTEN) nginx 2109 nginx 6u IPv4 14747 0t0 TCP *:80 (LISTEN)
■telnetで80番ポートコネクション確認
[123@ hoge]# telnet xxx.xxx.xxx.xxx 80 Trying xxx.xxx.xxx.xxx... telnet: connect to address xxx.xxx.xxx.xxx: Connection timed out
■Nginx コンフィグ(デフォルトのまま)
/etc/nginx/nginx.conf
nginx
1user nginx; 2worker_processes 1; 3 4error_log /var/log/nginx/error.log warn; 5pid /var/run/nginx.pid; 6 7 8events { 9 worker_connections 1024; 10} 11 12 13http { 14 include /etc/nginx/mime.types; 15 default_type application/octet-stream; 16 17 log_format main '$remote_addr - $remote_user [$time_local] "$request" ' 18 '$status $body_bytes_sent "$http_referer" ' 19 '"$http_user_agent" "$http_x_forwarded_for"'; 20 21 access_log /var/log/nginx/access.log main; 22 23 sendfile on; 24 #tcp_nopush on; 25 26 keepalive_timeout 65; 27 28 #gzip on; 29 30 include /etc/nginx/conf.d/*.conf; 31}
/etc/nginx/conf.d/default.conf
nginx
1server { 2 listen 80; 3 server_name localhost; 4 5 #charset koi8-r; 6 #access_log /var/log/nginx/host.access.log main; 7 8 location / { 9 root /usr/share/nginx/html; 10 index index.html index.htm; 11 } 12 13 #error_page 404 /404.html; 14 15 # redirect server error pages to the static page /50x.html 16 # 17 error_page 500 502 503 504 /50x.html; 18 location = /50x.html { 19 root /usr/share/nginx/html; 20 } 21 22 # proxy the PHP scripts to Apache listening on 127.0.0.1:80 23 # 24 #location ~ .php$ { 25 # proxy_pass http://127.0.0.1; 26 #} 27 28 # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 29 # 30 #location ~ .php$ { 31 # root html; 32 # fastcgi_pass 127.0.0.1:9000; 33 # fastcgi_index index.php; 34 # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; 35 # include fastcgi_params; 36 #} 37 38 # deny access to .htaccess files, if Apache's document root 39 # concurs with nginx's one 40 # 41 #location ~ /.ht { 42 # deny all; 43 #} 44} 45
回答1件
あなたの回答
tips
プレビュー