nginx安装

nginx安装

我是在ubuntu上安装的
首先解压
tar -vxf nginx-1.3.1.tar.gz
然后进入解压后的文件夹
cd nginx-1.3.1/

然后执行./configure 命令生成makefile文件
此时可能会报如下的错误
./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.
这是由于没有安装pcre库造成的,然后执行以下命令安装pcre库

先更新一下源
sudo apt-get update              
然后安装pcre库
apt-get install libpcre3 libpcre3-dev

然后再执行./configure命令时可能会报错说没有安装zlib库,此时我们执行以下命令进行安装
apt-get install zlib1g-dev

然后执行./configure命令就能成功生成makefile文件了
然后编译
make
再安装
make install

安装完成后进入安装的文件夹,默认的安装文件夹是/usr/local/nginx/sbin
cd /usr/local/nginx/sbin
然后以管理员权限运行,然后就可以在浏览器中输入你的机器的ip,就会访问nginx的欢迎界面
sudo ./nginx
我是在虚拟机中安装的,然后用ifconfig命令查看一下虚拟机的IP,然后直接在主机的浏览器中输入虚拟机的IP就可以访问nginx的欢迎界面,当然在虚拟机中也能访问
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值