欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

centos 7.0最小化安装nginx 源代码编译安装 过程都记录下来了 不能访问 这是什么原因?

程序员文章站 2024-01-11 19:51:10
...
新手 想直接wget 下载 源代码编辑
编译好了 后没有反应 怎么查看正常开启
查看进程显示三个

[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

第一个是我编译的

防火墙iptables我看也没有限制80端口

我直接访问http://192.168.1.103/
就不行

IP没错的
[root@localhost sbin]# ip addr1: lo:  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:  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


整个过程记录了
http://www.cnblogs.com/xxx91hx/p/4245901.html

文章有点长 求好心人看看~ 给指点到底为啥 查了好几天 没弄过就是想不到了

centos 是说本身就有nginx么 要先卸载本身的 在进行安装这样的么 怎么查看?
求大神帮忙看看 怎么弄 还有正式服务器上都是yum安装么?
还是手动编译的?


回复讨论(解决方案)

这个看样子好像已经成功了啊。进程都有了。
你在服务器上wget一下本机IP,看看能不能获取到内容。

这个看样子好像已经成功了啊。进程都有了。
你在服务器上wget一下本机IP,看看能不能获取到内容。


请问 我这个是正常的么 我局域网一台机子是这样安装的 在另一台机子*问IP 应该是可以的啊
貌似也是找的index.html了 我直接另一台机子*问 http://192.168.1.103/ 提示无法访问
防火墙我那么看对么 貌似没有80端口的规则
[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])


还有这个 nginx 这个是两个进程的? 正常状态么 求大神 你看两眼啊~ 搞了好几天 不明白了 ~
[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)

如果直接 wget 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])

想得快吐血了 求大神 帮忙看眼啊 为啥我这台机子访问不了额 ~ 是防火墙的问题么 我上面那么查法对么~

总算解决了~