在CENTOS上源碼搭建LNMP環境

來源:互聯網
上載者:User

標籤:編譯   ln -s   com   evel   foo   bmc   組件   內容   Stub   

前言

1.操作前提:

  • CentOS Linux release 7.5.1804;
  • sudo使用者(需要root許可權);

2.需要安裝的組件:

  • nginx穩定版:nginx-1.14.0;
  • MariaDB 10.3.10 Stable;
  • PHP 7.2.11 Stable;

3.操作步驟:

  • 添加環境依賴包;
  • 安裝libiconv,libmcrypt等;
  • 安裝nginx;
  • 安裝php;
  • 安裝mariadb;
下載安裝包
wget http://nginx.org/download/nginx-1.14.0.tar.gz &&  tar xzvf nginx-1.14.0.tar.gz wget http://am1.php.net/distributions/php-7.2.11.tar.gz && tar xzvf php-7.2.11.tar.gzwget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz &&  tar xzvf libiconv-1.14.tar.gzwget http://sourceforge.net/projects/mcrypt/files/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz && tar xzvf ./libmcrypt-2.5.8.tar.gz

刪除不需要的源碼包:

rm -rf *.tar.gz
添加環境依賴包

以下依賴包是整個Lnmp搭建過程中所需的基本依賴包,如果在安裝過程中出現錯誤,提示缺少某依賴包,可以自己安裝:

#執行下面這條命令,各參數之間以空格分開sudo yum -y install zlib-devel pcre-devel openssl-devel gcc gcc-c++  ncurses-devel perl perl-devel perl-ExtUtils-Embedlibjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel  libxml2 libxml2-devel curl-devel libxslt libxslt-devel gd gd-devel GeoIP GeoIP-devel
編譯nginx

為了使Nginx能夠啟用http/2,需要通過源碼的方式安裝nginx,並指定--with-openssl的版本在1.0.2版本以上,這裡我將需要版本的依賴安裝在/usr/local/src目錄:

$ cd /usr/local/src/# PCRE version 8.40$ sudo wget https://ftp.pcre.org/pub/pcre/pcre-8.40.tar.gz && sudo tar xzvf pcre-8.40.tar.gz# zlib version 1.2.11$ sudo wget https://www.zlib.net/zlib-1.2.11.tar.gz && sudo tar xzvf zlib-1.2.11.tar.gz# OpenSSL version openssl-1.1.0h$ sudo wget https://www.openssl.org/source/openssl-1.1.0h.tar.gz && sudo tar xzvf openssl-1.1.0h.tar.gz

刪除不需要的包

sudo rm -rf *.tar.gz

編譯nginx

cd ~/src/nginx-1.14.0
sudo ./configure --prefix=/etc/nginx             --sbin-path=/usr/sbin/nginx             --modules-path=/usr/lib64/nginx/modules             --conf-path=/etc/nginx/nginx.conf             --error-log-path=/var/log/nginx/error.log             --pid-path=/var/run/nginx.pid             --lock-path=/var/run/nginx.lock             --user=nginx             --group=nginx             --build=CentOS             --builddir=nginx-1.14.0             --with-select_module             --with-poll_module             --with-threads             --with-file-aio             --with-http_ssl_module             --with-http_v2_module             --with-http_realip_module             --with-http_addition_module             --with-http_xslt_module=dynamic             --with-http_image_filter_module=dynamic             --with-http_geoip_module=dynamic             --with-http_sub_module             --with-http_dav_module             --with-http_flv_module             --with-http_mp4_module             --with-http_gunzip_module             --with-http_gzip_static_module             --with-http_auth_request_module             --with-http_random_index_module             --with-http_secure_link_module             --with-http_degradation_module             --with-http_slice_module             --with-http_stub_status_module             --http-log-path=/var/log/nginx/access.log             --http-client-body-temp-path=/var/cache/nginx/client_temp             --http-proxy-temp-path=/var/cache/nginx/proxy_temp             --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp             --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp             --http-scgi-temp-path=/var/cache/nginx/scgi_temp             --with-mail=dynamic             --with-mail_ssl_module             --with-stream=dynamic             --with-stream_ssl_module             --with-stream_realip_module             --with-stream_geoip_module=dynamic             --with-stream_ssl_preread_module             --with-compat             --with-pcre=/usr/local/src/pcre-8.40             --with-pcre-jit             --with-zlib=/usr/local/src/zlib-1.2.11             --with-openssl=/usr/local/src/openssl-1.1.0h             --with-openssl-opt=no-nextprotoneg             --with-debug

上面--prefix=/etc/nginx為安裝目錄。

sudo make && sudo make install

建立軟鏈

sudo ln -s /usr/lib64/nginx/modules /etc/nginx/modules

這樣就可以在nginx的設定檔中像這樣載入動態模組:load_module modules/ngx_foo_module.so;。

查看編譯資訊

sudo nginx -V

修改/etc/nginx/nginx.conf

去掉 user nobody;一行的注釋。

檢查配置是否存在潛在錯誤

## 執行檢查可能會報錯sudo nginx -tnginx: the configuration file /etc/nginx/nginx.conf syntax is oknginx: [emerg] mkdir() "/var/cache/nginx/client_temp" failed (2: No such file or directory)nginx: configuration file /etc/nginx/nginx.conf test failed## 如果報上面的錯誤,則執行下面的代碼sudo mkdir -p /var/cache/nginx && sudo nginx -t

建立nginx系統服務單元

編輯檔案:

sudo vi /usr/lib/systemd/system/nginx.service

將下面的內容複寫進去

[Unit]Description=nginx - high performance web serverDocumentation=https://nginx.org/en/docs/After=network-online.target remote-fs.target nss-lookup.targetWants=network-online.target[Service]Type=forkingPIDFile=/var/run/nginx.pidExecStartPre=/usr/sbin/nginx -t -c /etc/nginx/nginx.confExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.confExecReload=/bin/kill -s HUP $MAINPIDExecStop=/bin/kill -s TERM $MAINPID[Install]WantedBy=multi-user.target

啟動nginx並設定開機啟動

sudo systemctl start nginx.service && sudo systemctl enable nginx.service

至此,nginx的安裝到此結束,nginx的源碼安裝參考出處:centos7通過編譯源碼的方式安裝nginx;

接下來進行源碼編譯安裝Php的操作。

編譯安裝php

php需要libiconv、libmcrypt等依賴,下面進行編譯:【閱讀原文】

在CENTOS上源碼搭建LNMP環境

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.