美文网首页PHP进阶篇
Centos服务配置lnmp(nginx+mysql+php)之

Centos服务配置lnmp(nginx+mysql+php)之

作者: 安之烟波客 | 来源:发表于2018-11-07 00:25 被阅读27次

    Ngnix 安装

    1. 首先从官方下载最新版的Nginx 一般情况下我不喜欢用低版本的

      wget http://nginx.org/download/nginx-1.15.6.tar.gz
      
    2. 下载完成之后我们开始解压,依次运行以下代码

      tar -zxvf nginx-1.15.6.tar.gz 
      
    3. 解压成功之后 切换到 解压目录

       cd nginx-1.15.6
      
    4. 开始编译安装
      首先我们需要指定一下Nginx安装的目录,因为服务器一般情况下 是我运维人员来进行运行维护的 所以我们一定要记住我们的安装目录 所以我就自己在根目录下创建一个自己习惯的目录 webserver 以后的mysql php都安装在这个目录下,不管是多少个版本的php都放在这个总目录下

      mkdir webserver
      
    5. 重新切换到刚才解压目录

      cd /home/download/ngnix-1.15.6 && ./configure --prefix=/webserver/nginx
      

      运行完之后我们发现 出问题了

      ./configure: error: C compiler cc is not found
      

      擦 这个是什么问题,经过查看 是缺少 c语言的依赖 这个依赖对于初接触这要了解一下

    6. 安装一下这个依赖

    yum install -y gcc-c++
    
    1. 运行第五步 貌似还是很多问题 各种not found
    checking for memalign() ... found
    checking for mmap(MAP_ANON|MAP_SHARED) ... found
    checking for mmap("/dev/zero", MAP_SHARED) ... found
    checking for System V shared memory ... found
    checking for POSIX semaphores ... not found
    checking for POSIX semaphores in libpthread ... found
    checking for struct msghdr.msg_control ... found
    checking for ioctl(FIONBIO) ... found
    checking for struct tm.tm_gmtoff ... found
    checking for struct dirent.d_namlen ... not found
    checking for struct dirent.d_type ... found
    checking for sysconf(_SC_NPROCESSORS_ONLN) ... found
    checking for sysconf(_SC_LEVEL1_DCACHE_LINESIZE) ... found
    checking for openat(), fstatat() ... found
    checking for getaddrinfo() ... found
    checking for PCRE library ... not found
    checking for PCRE library in /usr/local/ ... not found
    checking for PCRE library in /usr/include/pcre/ ... not found
    checking for PCRE library in /usr/pkg/ ... not found
    checking for PCRE library in /opt/local/ ... not found
    
    ./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 这个是一个rewrite依赖 我去 ! 我检查了一下 已经安装了并且是最高版本,这个是怎么回事儿呢,百度一下 ,搜嘎,原来是没有安装opessl 好吧 安装一下

    1. 安装一下openssl
    yum -y install openssl openssl-devel
    

    从新运行 第五步,经过观察 看到以下代码 说明我们可以正常的安装了 往下继续看 下面的代码有可能的话 你可以存一下 这个是Nginx的安装路径信息

    + using system PCRE library
      + OpenSSL library is not used
      + using system zlib library
    
      nginx path prefix: "/webserver/ngnix"
      nginx binary file: "/webserver/ngnix/sbin/nginx"
      nginx modules path: "/webserver/ngnix/modules"
      nginx configuration prefix: "/webserver/ngnix/conf"
      nginx configuration file: "/webserver/ngnix/conf/nginx.conf"
      nginx pid file: "/webserver/ngnix/logs/nginx.pid"
      nginx error log file: "/webserver/ngnix/logs/error.log"
      nginx http access log file: "/webserver/ngnix/logs/access.log"
      nginx http client request body temporary files: "client_body_temp"
      nginx http proxy temporary files: "proxy_temp"
      nginx http fastcgi temporary files: "fastcgi_temp"
      nginx http uwsgi temporary files: "uwsgi_temp"
      nginx http scgi temporary files: "scgi_temp"
    
    1. 运行一下下面的命令
     make && make instal
    

    运行完之后 切换目录到webserver中 会看到ngnix文件夹 看到这个就差不多成功了,接着就是启动一下服务

    1. 启动nginx,切换到nginx/sbin/ 目录中
    ./nginx -t
    

    打开浏览器 输入自己服务器的IP地址查看一下


    服务器网页示例图

    能看到这个图片的 就证明你成功了!

    总结一下 编译安装nginx并不像想象那么难,从开始到结束我遇见了一个问题就是缺少依赖,一共有三个分别是【gcc-c++】/【openssl】/【pcre】

    相关文章

      网友评论

        本文标题:Centos服务配置lnmp(nginx+mysql+php)之

        本文链接:https://www.haomeiwen.com/subject/rntmxqtx.html