在linux下配置nginx服务器教程(centos6.0),nginxcentos6.0


在linux下配置nginx服务器,话不多说,上步骤

在下载安装pcre和nginx中,要用root身份,一般下载到/usr/local/src/,下载到其他地方配置呢?(测试几次没成功)

1、编译环境gcc g++ 开发库之类的需要提前装好

yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel

2、首先安装PCRE pcre功能是让nginx有rewrite功能

下载PCRE

解压安装包:tar zxvf pcre-8.35.tar.gz

进入安装包目录:cd pcre-8.35

编译:./configure

安装:make && make install

查看安装版本:pcre-config --version 如果出现版本号,说明安装成功

检查系统里是否安装了pcre软件

rpm -qa pcre 如果没有显示说明没有安装 反之安装过

rpm -e --nodeps pcre 删除pcre

3、安装nginx

下载nginx:wget https://nginx.org/download/nginx-1.6.2.tar.gz

解压安装包: tar zxvf nginx-1.6.2.tar.gz

进入安装包目录:cd nginx-1.6.2

编译安装:./configure 默认地址 /usr/local/nginx

安装:make

安装:make install

注:

第一次编译的时候:

使用64位的系统第一次编译安装出现

error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory这种情况,nginx默认是在lib64下,32为的是在lib下

查找:find / -name 'libpcre.so.1' 出现 /usr/local/lib/libpcre.so.1,我们建立以符号链接:ln -s /usr/local/lib/libpcre.so.1 /lib64/libpcre.so.1

这样可以查看nginx版本 /usr/local/nginx/sbin/nginx -v 出现版本号

可以检测配置的是否正确

出现如下两句话表示正确 #/usr/local/nginx/sbin/nginx -t

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

5、启动nginx

启动的时候有报错,如下

nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)

nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)

nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)

nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)...

这说明80接口有被占用,查看接口

netstat -ntpl

kill -9 $pid //杀掉进程

再次启动

/usr/local/nginx/sbin/nginx

停止服务器

/usr/local/nginx/sbin/nginx -s stop 或 /usr/local/nginx/sbin/nginx -s quick

关闭防火墙命令: service iptables stop

永久关闭防火墙:chkconfig iptables off

两个命令同时运行,运行完成后查看防火墙关闭状态

关闭命令: service iptables stop

永久关闭防火墙:chkconfig iptables off

两个命令同时运行,运行完成后查看防火墙关闭状态

service iptables status

访问网页(本机IP)

\

卸载nginx

删除nginx文件即可

rm -rf /usr/local/nginx

相关内容