码迷,mamicode.com
首页 > 其他好文 > 详细

nginx安装--ubuntu

时间:2014-09-29 18:37:51      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:http   os   ar   文件   sp   div   c   on   r   

1.准备:

copy 安装文件nginx-1.7.5.tar.gz到 /usr/local/
//需准备好Perl 5 兼容正则表达式库(PCRE)与SSL 支持库
sudo apt-get update
sudo apt-get install libpcre3 libpcre3-dev
sudo apt-get install openssl libssl-dev
并确认是否有安装 gcc/g++

gcc -v
g++ -v


2.安装

cd /usr/local
tar -zxvf nginx-1.7.5.tar.gz
mv nginx-1.7.5 nginx
cd nginx
./configure --prefix=/usr/local/nginx
make
make install



3.启动
/usr/local/nginx/nginx
http://localhost/若可出现正常画面表示成功。
或netstat –na|grep 80

nginx -s stop
nginx -s reload

nginx安装--ubuntu

标签:http   os   ar   文件   sp   div   c   on   r   

原文地址:http://my.oschina.net/raydchang/blog/323228

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!