Ifup eth0
查看dhcp分配的网络IP及网关
Netstat -rn(IP:192.168.31.0 网关:192.168.31.2)
编辑模式打开这个文件,也就是自己手动配置IP:
Vi /etc/sysconfig/network-scripts/ifcfg-eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR=IP(netstat 中分配给你的IP)
NETMASK=255.255.255.0
GETEWAY=网关
DNS1=223.5.5.5
DNS2=223.6.6.6
保存!
然后重启网卡:
Ifdown eth0
或者 service network restart
安装服务和编译器:
Yum install �Cy httpd-level pcrepcre-level zlib zlib-level GeoIP GeoIP-level
Yum install �Cy gcc c++openssl openssl-level (两个命令可以和在一起)
wget http://nginx.org/download/nginx-1.12.1.tar.gz
解压到自己喜欢的位置(这里是 /home)
cd /home
tar �CzxvfNginx-1.12.1.tar.gz
cd Nginx-1.12.1
配置Nginx:
./configure--prefix=/use/local/Nginx --sbin-path=/usr/local/Nginx/Nginx
--conf-path=/usr/local/Nginx/conf/Nginx.conf
--error-log-path=/var/log/Nginx/error.log
--pid-path=/var/run/Nginx.pid
--with-http_ssl_module
--with-http_flv_module
--with-http_gzip_static_module
--http-log-path=/var/log/Nginx/access.log
--http-client-body-temp-path=/var/tmp/Nginx/client
--http-proxy-temp-path=/var/tmp/Nginx/proxy
--http-fastcgi-temp-path=/var/tmp/Nginx/fcgi
编译安装:
make && make install
cd /usr/local/Nginx
mkdir -p /var/tmp/Nginx/client
vi /etc/sysconfig/iptables (在这里面添加80端口服务) iptable 总所周知这是unix下的防火墙设置
在里面添加规格,开放80端口。
service iptables restart 重启防火墙
netstat �Ctunlp
(查看目前开放的端口号,由于没有启动Nginx可能80没有开,打开就好了)
groupadd -r Nginx (创建Nginx用户组)
useradd -s /sbin/nologin -g Nginx -rNginx (给用户组Nginx添加不能登录的Nginx用户)
./Nginx (启动服务)
curl http://127.0.0.1 (模拟访问,会返回一个html源码页面)
原文链接:https://www.f2er.com/centos/376679.html