Categories: 工作

安装Nginx

安装;
#tar -xzf nginx-1.4.0.tar.gz
#yum -y install gcc pcre-devel openssl-devel
#cd nginx-1.4.0
#./configure –help 查找下安装的帮助
先在/usr/local 下面新建nginx文件夹 ,命令mkdir nginx.
# ./configure –prefix=/usr/local/nginx/ –with-http_mp4_module –with-http_ssl_module –with-http_flv_module –with-http_realip_module
报错OpenSSL没装,安装OpenSSL
#yum -y install openssl-devel
#make && make install
安装完毕…
#cd /usr/local/nginx/ 打开nginx安装目录
#ls 看下目录下面是否有conf html logs sbin
#cd sbin
#./nginx 启动nginx
启动时候报错
80端口被占用了.
#netstat -ntpl 先查看80端口占用的程序
#kill 7878
防火墙开放80端口
#vi /etc/sysconfig/iptables
加上-A INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT
# service iptables restart 重启防火墙
如果外网访问还是不行的话,关闭下防火墙就可以了
Kai

Share
Published by
Kai

Recent Posts

国产异地组网新秀——节点小宝3.0使用体验

截止发稿时,节点小宝已经迭代到…

5 天 ago

VMCE 练习题 – 2024 年 12 月

VMCE 练习题 - 2024…

1 周 ago

VMCE 练习题 – 2024 年 11 月

VMCE 练习题 - 2024…

1 周 ago

VMCE 练习题 – 2024 年 10 月

 VMCE 练习题 - 202…

1 周 ago

狗狗币最新挖矿教程

说明 如果你没有免费的电不建议…

1 月 ago

【国产软件】平替Veeam的容灾备份 云祺

最近在测试国产容灾备份软件,云…

2 月 ago