nginx install
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx install相关的知识,希望对你有一定的参考价值。
wget http://nginx.org/download/nginx-1.11.1.tar.gz
tar xf nginx-1.11.1.tar.gz
cd nginx-1.11.1
搭建yum环境,解决nginx需要的开发包
挂载光盘
mount /dev/cdrom /mnt
cd /etc/yum.repos.d/
vim Centos_86x64.repo
[base]
name=Centos_86x64
baseurl=file:///mnt/
enabled=1
gpgcheck=0
9. yum groupinstall "Server Platform Development" "Development tools"
10. yum install pcre-devel
13. cd nginx-1.11.1
14. ./configure --prefix=/usr/local/nginx --conf-path=/etc/nginx/nginx.conf
15. make && make install
16. cd /usr/local/nginx/sbin
17. ./nginx
18. 访问192.168.1.10
以上是关于nginx install的主要内容,如果未能解决你的问题,请参考以下文章