ホームページ >バックエンド開発 >PHPチュートリアル >Centos 7.0 では、nginx のインストールが最小限に抑えられていますが、ソース コードのコンパイルとインストールのプロセスが記録され、アクセスできません。その原因は何ですか?
初心者が wget でソースコードを直接ダウンロードして編集したいと考えています
コンパイル後に応答がありません。正常に起動したかどうかを確認するにはどうすればよいですか?
プロセスを確認すると 3 つが表示されます
[root@localhost sbin]# ps -ef|grep nginxroot 13536 1 0 14:14 ? 00:00:00 nginx: master process ./nginxnobody 13537 13536 0 14:14 ? 00:00:00 nginx: worker processroot 13540 2281 0 14:16 pts/0 00:00:00 grep --color=auto nginx
[root@localhost sbin]# ip addr1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever2: enp2s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000 link/ether 6c:62:6d:73:e6:4a brd ff:ff:ff:ff:ff:ff inet 192.168.1.103/24 brd 192.168.1.255 scope global enp2s0 valid_lft forever preferred_lft forever inet6 fe80::6e62:6dff:fe73:e64a/64 scope link valid_lft forever preferred_lft forever
これは成功したようです。プロセスはすべてそこにあります。
サーバー上のローカル IP を取得して、コンテンツを取得できるかどうかを確認できます。
これは成功したようです。プロセスはすべてそこにあります。
サーバー上のローカル IP を取得して、コンテンツを取得できるかどうかを確認できます。
[root@localhost sbin]# iptables -nL --line-numberChain INPUT (policy ACCEPT)num target prot opt source destination1 ACCEPT all -- 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED2 ACCEPT all -- 0.0.0.0/0 0.0.0.0/03 INPUT_direct all -- 0.0.0.0/0 0.0.0.0/04 INPUT_ZONES_SOURCE all -- 0.0.0.0/0 0.0.0.0/05 INPUT_ZONES all -- 0.0.0.0/0 0.0.0.0/06 ACCEPT icmp -- 0.0.0.0/0 0.0.0.0/07 REJECT all -- 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibitedChain FORWARD (policy ACCEPT)num target prot opt source destination1 ACCEPT all -- 0.0.0.0/0 0.0.0.0/0 ctstate RELATED,ESTABLISHED2 ACCEPT all -- 0.0.0.0/0 0.0.0.0/03 FORWARD_direct all -- 0.0.0.0/0 0.0.0.0/04 FORWARD_IN_ZONES_SOURCE all -- 0.0.0.0/0 0.0.0.0/05 FORWARD_IN_ZONES all -- 0.0.0.0/0 0.0.0.0/06 FORWARD_OUT_ZONES_SOURCE all -- 0.0.0.0/0 0.0.0.0/0 7 FORWARD_OUT_ZONES all -- 0.0.0.0/0 0.0.0.0/08 ACCEPT icmp -- 0.0.0.0/0 0.0.0.0/09 REJECT all -- 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibitedChain OUTPUT (policy ACCEPT)num target prot opt source destination1 OUTPUT_direct all -- 0.0.0.0/0 0.0.0.0/0Chain FORWARD_IN_ZONES (1 references)num target prot opt source destination1 FWDI_public all -- 0.0.0.0/0 0.0.0.0/0 [goto]2 FWDI_public all -- 0.0.0.0/0 0.0.0.0/0 [goto]Chain FORWARD_IN_ZONES_SOURCE (1 references)num target prot opt source destinationChain FORWARD_OUT_ZONES (1 references)num target prot opt source destination1 FWDO_public all -- 0.0.0.0/0 0.0.0.0/0 [goto]2 FWDO_public all -- 0.0.0.0/0 0.0.0.0/0 [goto]Chain FORWARD_OUT_ZONES_SOURCE (1 references)num target prot opt source destinationChain FORWARD_direct (1 references)num target prot opt source destinationChain FWDI_public (2 references)num target prot opt source destination1 FWDI_public_log all -- 0.0.0.0/0 0.0.0.0/02 FWDI_public_deny all -- 0.0.0.0/0 0.0.0.0/03 FWDI_public_allow all -- 0.0.0.0/0 0.0.0.0/0Chain FWDI_public_allow (1 references)num target prot opt source destinationChain FWDI_public_deny (1 references)num target prot opt source destinationChain FWDI_public_log (1 references)num target prot opt source destinationChain FWDO_public (2 references)num target prot opt source destination1 FWDO_public_log all -- 0.0.0.0/0 0.0.0.0/02 FWDO_public_deny all -- 0.0.0.0/0 0.0.0.0/03 FWDO_public_allow all -- 0.0.0.0/0 0.0.0.0/0Chain FWDO_public_allow (1 references)num target prot opt source destinationChain FWDO_public_deny (1 references)num target prot opt source destinationChain FWDO_public_log (1 references)num target prot opt source destinationChain INPUT_ZONES (1 references)num target prot opt source destination1 IN_public all -- 0.0.0.0/0 0.0.0.0/0 [goto]2 IN_public all -- 0.0.0.0/0 0.0.0.0/0 [goto]Chain INPUT_ZONES_SOURCE (1 references)num target prot opt source destinationChain INPUT_direct (1 references)num target prot opt source destinationChain IN_public (2 references)num target prot opt source destination1 IN_public_log all -- 0.0.0.0/0 0.0.0.0/02 IN_public_deny all -- 0.0.0.0/0 0.0.0.0/03 IN_public_allow all -- 0.0.0.0/0 0.0.0.0/0Chain IN_public_allow (1 references)num target prot opt source destination1 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:22 ctstate NEWChain IN_public_deny (1 references)num target prot opt source destinationChain IN_public_log (1 references)num target prot opt source destinationChain OUTPUT_direct (1 references)num target prot opt source destination复制代码
[root@localhost /]# wget localhost--2015-01-24 17:04:52-- http://localhost/正在解析主机 localhost (localhost)... ::1, 127.0.0.1正在连接 localhost (localhost)|::1|:80... 失败:拒绝连接。正在连接 localhost (localhost)|127.0.0.1|:80... 已连接。已发出 HTTP 请求,正在等待回应... 200 OK长度:612 [text/html]正在保存至: “index.html”100%[======================================>] 612 --.-K/s 用时 0s2015-01-24 17:04:52 (91.0 MB/s) - 已保存 “index.html” [612/612])
[root@localhost sbin]# lsof -i:80COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAMEnginx 13536 root 6u IPv4 32434 0t0 TCP *:http (LISTEN)nginx 13548 nobody 6u IPv4 32434 0t0 TCP *:http (LISTEN)
IP アドレスを直接取得すれば、まったく問題ありません
[root@localhost /]# wget 192.168.1.103--2015-01-24 17:10:40-- http://192.168.1.103/正在连接 192.168.1.103:80... 已连接。已发出 HTTP 请求,正在等待回应... 200 OK长度:612 [text/html]正在保存至: “index.html.1”100%[======================================>] 612 --.-K/s 用时 0s2015-01-24 17:10:40 (84.4 MB/s) - 已保存 “index.html.1” [612/612])
ついに解決しました〜