1.解压 pcre
tar zxvf   pcre-8.10.tar.gz 解压 pcre 后 /home 下面会有 pcre-8.10 文件夹
2.配置pcre
     cd /home/ pcre-8.10
     ./configure   输入该命令后屏幕会生成一堆文件,不用去管它
3.make
     在linux 中输入 make 命令后屏幕会生成一堆文件,不用去管它
     如果失败的话 看提示错误  少什么库就去安装什么库 如果不是少库的话 就是gcc比较落后了 更新一下新的gcc
     yum -y install gcc gcc-c++ autoconf automake
4. make install
      在linux 中输入 make install
5. 下载nginx包并解压。
6.进入文件夹后 执行
     ./configure --prefix=/usr/local/nginx --with-http_stub_status_module
7.make
       在linux 中输入 make 命令后屏幕会生成一堆文件,不用去管它
8.make install
       在linux 中输入 make install
9.在/usr/local/nginx/conf/nginx.conf中简单的配置一下
 worker_processes  8;
 error_log  /home/logs/nginx/error.log;
 #error_log  /home/logs/nginx/error.log  notice;
 #error_log  /home/logs/nginx/error.log  info;

 pid       /home/logs/nginx/nginx.pid;

 events
 {
   use epoll;
   worker_connections 65535;
 }
        location / {
            root   /home/www/web/ROOT;  #这里是文件要存放的位置 自己定义下
            index  index.html index.htm;
        }

10.检查是否安装成功
         cd  /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

 如果这里报错的话  很有可能是你的那个pid的位置  你没有建立相关的文件夹

11.启动nginx
          cd  /usr/local/nginx/sbin 目录下面 输入 ./nginx 启动 nginx
12.检查是否启动成功
          ie 浏览器中输入 http://你定义的IP:你定义的端口/
 如果出现404错误的话  说明你没有建立/home/www/web/ROOT文件夹
 如果你有了的话 将index.jsp放进去就可以了
13.停止服务 
 pkill -9 nginx

GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐