nginx伺服器安裝記錄
安裝檔案為:
Nginx: nginx-1.4.2 穩定版
Php:php-5.5.4 其中已經內建支援fastcgi了,不用在打補丁
首先配置防火牆
不在敘述
安裝nginx
安裝必要補丁
# yum -y install pcre-devel opensslopenssl-devel gcc-c++
安裝前優化
減小Nginx編譯後的檔案大小
在編譯Nginx時,預設以debug模式進行,而在debug模式下會插入很多跟蹤和ASSERT之類的資訊,編譯完成後,一個Nginx要有好幾兆位元組。在編譯前取消Nginx的debug模式,編譯完成後Nginx只有幾百千位元組,因此可以在編譯之前,修改相關原始碼,取消debug模式,具體方法如下:
在Nginx原始碼檔案被解壓後,找到原始碼目錄下的auto/cc/gcc檔案,在其中找到如下幾行:
1. # debug
2. CFLAGS=”$CFLAGS -g”
註釋掉或刪掉這兩行,即可取消debug模式。
利用TCMalloc優化Nginx的效能TCMalloc的全稱為Thread-CachingMalloc,是谷歌開發的開源工具“google-perftools”中的一個成員。與標準的glibc庫的malloc相比,TCMalloc庫在記憶體分配效率和速度上要高很多,這在很大程度上提高了伺服器在高併發情況下的效能,從而降低系統負載。下面簡單介紹如何為Nginx新增TCMalloc庫支援。
要安裝TCMalloc庫,需要安裝libunwind(32位作業系統不需要安裝)和google-perftools兩個軟體包,libunwind庫為基於64位CPU和作業系統的程式提供了基本函式呼叫鏈和函式呼叫暫存器功能。下面介紹利用TCMalloc優化Nginx的具體操作過程:
1. [[email protected] home]#tar zxvf libunwind-0.99-alpha.tar.gz
2. [[email protected] home]# cd libunwind-0.99-alpha/
3. [[email protected] libunwind-0.99-alpha]#CFLAGS=-fPIC ./configure
4. [[email protected] libunwind-0.99-alpha]#make CFLAGS=-fPIC
5. [[email protected]libunwind-0.99-alpha]#make CFLAGS=-fPIC install
2.安裝google-perftools
可以從http://google-perftools.googlecode.com下載相應的google-perftools版本,這裡下載的是google-perftools-1.8.tar.gz,安裝過程如下:
1. [[email protected] home]#tar zxvf google-perftools-1.8.tar.gz
2. [[email protected] home]#cd google-perftools-1.8/
3. [[email protected] google-perftools-1.8]# ./configure
4. [[email protected] google-perftools-1.8]#make && make install
5. [[email protected] google-perftools-1.8]#echo "/usr/local/lib" > /etc/ld.so.conf.d/usr_local_lib.conf
6. [[email protected] google-perftools-1.8]# ldconfig
至此,google-perftools安裝完成。
3.重新編譯Nginx
為了使Nginx支援google-perftools,需要在安裝過程中新增“–with-google_perftools_module”選項重新編譯Nginx,安裝程式碼如下:
1. [[email protected]]#./configure \
2. >--with-google_perftools_module --with-http_stub_status_module --with-http_mp4_module --with-http_flv_module --prefix=/usr/local/nginx
3. [[email protected] nginx-0.7.65]#make
4. [[email protected] nginx-0.7.65]#make install
到這裡Nginx安裝完成。
4.為google-perftools新增執行緒目錄
建立一個執行緒目錄,這裡將檔案放在/tmp/tcmalloc下,操作如下:
1. [[email protected] home]#mkdir /tmp/tcmalloc
2. [[email protected] home]#chmod 0777 /tmp/tcmalloc
5.修改Nginx主配置檔案
修改nginx.conf檔案,在pid這行的下面新增如下程式碼:
1. #pid logs/nginx.pid;
2. google_perftools_profiles /tmp/tcmalloc;
接著,重啟Nginx,完成google-perftools的載入。
6.驗證執行狀態
為了驗證google-perftools已經正常載入,通過如下命令檢視:
1. [[email protected] localhost home]# lsof -n | grep tcmalloc
2. nginx 2395 nobody 9w REG 8,8 0 1599440 /tmp/tcmalloc.2395
3. nginx 2396 nobody 11w REG 8,8 0 1599443 /tmp/tcmalloc.2396
4. nginx 2397 nobody 13w REG 8,8 0 1599441 /tmp/tcmalloc.2397
5. nginx 2398 nobody 15w REG 8,8 0 1599442 /tmp/tcmalloc.2398
由於在Nginx配置檔案中,設定worker_processes的值為4,因此開啟了4個Nginx執行緒,每個執行緒會有一行記錄。每個執行緒檔案後面的數字值就是啟動的Nginx的PID值。
至此,利用TCMalloc優化Nginx的操作完成。
核心引數的優化,主要是在Linux系統中針對Nginx應用而進行的系統核心引數優化,常見的優化引數值如下。
下面給出一個優化例項以供參考:
1. net.ipv4.tcp_max_tw_buckets = 6000
2. net.ipv4.ip_local_port_range = 1024 65000
3. net.ipv4.tcp_tw_recycle = 1
4. net.ipv4.tcp_tw_reuse = 1
5. net.ipv4.tcp_syncookies = 1
6. net.core.somaxconn = 262144
7. net.core.netdev_max_backlog = 262144
8. net.ipv4.tcp_max_orphans = 262144
9. net.ipv4.tcp_max_syn_backlog = 262144
10. net.ipv4.tcp_synack_retries = 1
11. net.ipv4.tcp_syn_retries = 1
12. net.ipv4.tcp_fin_timeout = 1
13. net.ipv4.tcp_keepalive_time = 30
將上面的核心引數值加入/etc/sysctl.conf檔案中,然後執行如下命令使之生效:
[[email protected] localhost home]#/sbin/sysctl -p
詳細解釋參考高效能Linux 書
修改配置檔案
Vi /usr/local/nginx/conf/nginx.conf
user nobody;
worker_processes 1;
#error_log logs/error.log;
error_log logs/error.log notice;
#error_log logs/error.log info;
pid logs/nginx.pid;
google_perftools_profiles /tmp/tcmalloc;
worker_rlimit_nofile 65535;
events {
use epoll;
worker_connections 65536;
}
http {
include mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] '
'"$request" $status $bytes_sent'
'"$http_referer""$http_user_agent" '
'"$gzip_ratio"';
log_format download '$remote_addr - $remote_user [$time_local] '
'"$request" $status $bytes_sent'
'"$http_referer""$http_user_agent" '
'"$http_range""$sent_http_content_range"';
access_log logs/access.log main;
client_max_body_size 20m;
client_header_buffer_size 32K;
large_client_header_buffers 432k;
sendfile on;
tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 60;
client_header_timeout 10;
client_body_timeout 10;
send_timeout 10;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.1;
gzip_comp_level 2;
gzip_types text/plainapplication/x-javascript text/css application/xml;
gzip_vary on;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html; #web路徑
index index.html index.htmindex.php;
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
#proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name; #/usr/local/nginx/htmlweb路徑
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
#another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
#HTTPS server
#
#server {
# listen 443;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
詳細說明參考高效能linux 書
啟動nginx
#/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
停止nginx
查詢nginx主程序號
#ps -ef | grep nginx
從容停止Nginx:
kill -QUIT 主程序號
快速停止Nginx:
kill -TERM 主程序號
強制停止Nginx:
pkill -9 nginx
測試頁面,直接輸入伺服器ip
安裝php
需要安裝需要的模組,
yum -y install libjpeg libjpeg-devel libpnglibpng-devel freetype freetype-devel libxml2 libxml2-devel mysql pcre-devel curl-devel libxslt-devel
# tarzxvf php-5.5.4.tar.gz
# cdphp-5.5.4
複雜配置
#./configure--prefix=/usr/local/php \
--with-curl \
--with-freetype-dir \
--with-gd \
--with-gettext \
--with-iconv-dir \
--with-jpeg-dir \
--with-kerberos \
--with-libdir=lib64 \
--with-libxml-dir \
--with-mysql \
--with-mysqli \
--with-openssl \
--with-pcre-regex \
--with-pdo-mysql \
--with-pdo-sqlite \
--with-pear \
--with-png-dir \
--with-xmlrpc \
--with-xsl \
--with-zlib \
--enable-fpm \
--enable-bcmath \
--enable-libxml \
--enable-inline-optimization \
--enable-gd-native-ttf \
--enable-mbregex \
--enable-mbstring \
--enable-opcache \
--enable-pcntl \
--enable-shmop \
--enable-soap \
--enable-sockets \
--enable-sysvsem \
--enable-xml \
--enable-zip
簡易配置
# ./configure--prefix=/usr/local/php --with-mysql--enable-fpm--enable-opcache --with-freetype-dir --with-jpeg-dir--with-png-dir --with-zlib --with-libxml-dir --enable-xml --disable-debug--enable-safe-mode --enable-mbstring
如果需要GD庫還要
./configure--prefix=/usr/local/php --with-mysql --enable-fpm--enable-opcache --with-freetype-dir--with-jpeg-dir --with-png-dir --with-gd --with-zlib --with-libxml-dir--enable-xml --disable-debug --enable-safe-mode --enable-mbstring
# make&& make install
php-5.4.11已經支援fastcgi了,不用在打補丁了。
1.在編譯安裝時加上'--enable-fpm',注意修改php/etc/php-fpm.conf去掉pid前的註釋;
2.複製/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm還可以做成服務
複製php-fpm檔案到php安裝目錄
# cp-R ./sapi/fpm/php-fpm.conf /usr/local/php/etc/php-fpm.conf
拷貝php.ini檔案
安裝目錄有2個檔案:php.ini-development和php.ini-production
注意php.ini-production擁有較高的安全性設定,則適合上線當產品使用
# cpphp.ini-development /usr/local/php/lib/php.ini
或者
# cp php.ini-production/usr/local/php/lib/php.ini
如果操作了這一步以後使用phpinfo()就會看到Loaded Configuration File:
php-fpm啟動
拷貝啟用檔案
# cp -R ./sapi/fpm/php-fpm/etc/init.d/php-fpm
啟動
# /etc/init.d/php-fpm
重啟
# killallphp-fpm
# /etc/init.d/php-fpm
重啟nginx
#/usr/local/nginx/sbin/nginx -s reload
php安裝成功檢視程序
配置php加速外掛opcace
php.ini配置opcace
;opcache
zend_extension = /usr/local/php/lib/php/extensions/no-debug-non-zts-20121212/opcache.so
opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4000
opcache.revalidate_freq=60
opcache.fast_shutdown=1
opcache.enable_cli=1
opcache.enable=1
/no-debug-non-zts-20121212 根據實際檔名稱配置
128意思是給它分配128M記憶體,然後重啟apache,用phpinfo檢視是否生效,顯示下面的資訊就說明生效了
配置與優化PHP-FPM
標籤max_children用於設定FastCGI的程序數。根據官方建議,小於2GB記憶體的伺服器,可以只開啟64個程序,4GB以上記憶體的伺服器可以開啟200個程序。
<valuename="max_children">5</value>
標籤rlimit_files用於設定PHP-FPM對開啟檔案描述符的限制,預設值為1024。這個標籤的值必須和Linux核心開啟檔案數關聯起來,例如要將此值設定為65535,就必須在Linux命令列執行'ulimit -HSn 65536'。
<valuename="rlimit_files">1024</value>
在配置完成Nginx+FastCGI之後,為了保證Nginx下PHP環境的高速穩定執行,需要新增一些FastCGI優化指令。下面給出一個優化例項,將下面程式碼新增到Nginx主配置檔案中的HTTP層級。
1. fastcgi_cache_path /usr/local/nginx/fastcgi_cache levels=1:2 keys_zone=TEST:10m inactive=5m;
2. fastcgi_connect_timeout 300;
3. fastcgi_send_timeout 300;
4. fastcgi_read_timeout 300;
5. fastcgi_buffer_size 64k;
6. fastcgi_buffers 4 64k;
7. fastcgi_busy_buffers_size 128k;
8. fastcgi_temp_file_write_size 128k;
9. fastcgi_cache TEST;
10. fastcgi_cache_valid 200 302 1h;
11. fastcgi_cache_valid 301 1d;
12. fastcgi_cache_valid any 1m;
啟動nginx
ulimit –n 65535
ulimit –n 65536
# /usr/local/nginx/sbin/nginx -c/usr/local/nginx/conf/nginx.conf
重啟php-fpm
# killall php-fpm
ulimit –HSn 65536
# /etc/init.d/php-fpm
重啟nginx
# /usr/local/nginx/sbin/nginx -s reload
解決安裝完成後Mysql 連線不了問題(Nosuch file or directory 提示)
首先確定是mysql_connect()和mysql_pconnect()的問題,故障現象就是函式返回空,而mysql_error()返回“No such file or directory”。
寫個phpinfo頁面,找到mysql.default_socket、mysqli.default_socket、pdo_mysql.default_socket。
啟動mysql,執行命令 STATUS; 記下UNIX socket的值
如果2和3的值不一樣,則開啟php.ini(可以從phpinfo頁面中找到php.ini的位置)
一共修改三處,分別為:mysql.default_socket、mysqli.default_socket、pdo_mysql.default_socket
將UNIX socket的值賦予上面三次
重啟nginx 和 php-fpm
OK
相關推薦
nginx伺服器安裝記錄
安裝檔案為: Nginx: nginx-1.4.2 穩定版 Php:php-5.5.4 其中已經內建支援fastcgi了,不用在打補丁 首先配置防火牆 不在敘述 安裝nginx 安裝必要補丁 # yum -y install p
Linux下nginx 伺服器安裝
nginx 伺服器安裝: 去nginx管網 點選安裝nginx 點選package.檢視版本 開啟終端,進入桌面目錄下載認證金鑰 wget http://nginx.org/keys/nginx_signing.key 檢視金鑰 安裝 s
nginx伺服器安裝及配置檔案詳解(轉載)
nginx在工作中已經有好幾個環境在使用了,每次都是重新去網上扒部落格,各種編譯配置,今天自己也整理一份安裝文件和nginx.conf配置選項的說明,留作以後參考。像負載均衡配置(包括健康檢查)、快取(包括清空快取)配置例項,請參考http://segmentfault.
基於Nginx伺服器安裝phpMyAdmin
為了讓Nginx伺服器能夠發現phpMyAdmin併為之提供服務,因此需要建立從/usr/share/phpMyAdmin到Nginx伺服器根目錄的軟連線,Nginx根目錄預設為/usr/share/nginx/html。因此需鍵入以下命令:
nginx伺服器安裝啟動及配置檔案詳解
1.安裝Nginx 1.1 選擇穩定nginx版本 centos的yum不提供nginx安裝,通過配置官方yum源的方式獲取到的也只是原始碼包。所以我們找到了Nginx官網看下官方提供的安裝方式:Nginx原始碼包下載的官網地址(http://nginx
ubuntu環境下nginx伺服器安裝php的mcrypt
找了好多部落格只是介紹了下面的 sudo apt-get install libmcrypt4 php5-mcrypt 這句命令 但是發現php -m命令下還是沒有 mcrypt擴充套件 如是找到php的安裝目錄/etc/php5/cli/conf.d/ 和 /etc/
Nginx伺服器安裝本地HTTPS測試環境
前言:由於用於投放廣告的落地頁連結經常被不法分子劫持從而使用者點選下載遊戲的時候就會跳轉到其他下載應用,所以線上的伺服器已經修改
nginx安裝記錄
ron 服務 重啟命令 err chown dex rest nginx安裝 用戶 1、安裝依賴包yum install gcc yum install pcre-develyum install zlib zlib-develyum install openssl ope
nginx-1.15.5安裝記錄
mkdir /mysoftware cd /mysoftware wget https://www.cpan.org/src/5.0/perl-5.28.0.tar.gz tar -zxvf perl-5.28.0.tar.gz cd perl-5.28.0 ./Configure -des -Dpref
[記錄] nginx無法安裝
正在設定 nginx-full (1.10.1-1) ... Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service"
Nginx*(靜態web伺服器)安裝
Nginx 安裝配置 Nginx("engine x")是一款是由俄羅斯的程式設計師Igor Sysoev所開發高效能的 Web和 反向代理 伺服器,也是一個 IMAP/POP3/SMTP 代理伺服器。 在高連線併發的情況下,Nginx是Apache伺服器不錯的
Django uwsgi nginx tar.gz 方法 Linux 伺服器安裝
第一步:Django 安裝 Django官方下載連結 ①pip安裝可用,則直接 pip install django==Version(對應版本號) ②下載對應版本tar包,copy到伺服器,解壓後進入解壓目錄執行如下命令: python setup.py install 第
## **linux伺服器nginx的安裝**
系統:Centos7 64位 Nginx: http://nginx.org/en/download.html 目前最新版本1.15.7 下載模組依賴性Nginx需要依賴下面3個包 1.gzip 模組需要 zlib 庫 ( 下載: http://www.zlib.net/ ) 2.re
Centos7下Nginx編譯安裝與腳本安裝的記錄
錯誤頁面 ash || -c starting log dep zone 全局 一、安裝工具及依賴 yum install -y wget make cmake gcc gcc-c++ \ yum install -y pcre pcre-devel lib zlib-de
Window下安裝nginx伺服器
1、下載Nginx http://nginx.org/en/download.html 2、安裝Nginx a.視窗鍵(Ctrl、Alt中間)+R 進入指定目錄->cmd->出現dos視窗 b.進入指定目錄,比如這裡是在d盤: c.修改目錄
CentOS7安裝Nginx伺服器
1、新增yum源 rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm 2、yum查詢nginx yum sarch ngi
SpringCloud工作筆記049---nginx的安裝及配置為簡單的檔案伺服器
這個可以在專案中做個簡單的檔案伺服器用,如果是許可權這塊的,可以把許可權設計在系統中,有許可權的才能訪問 某個檔案,然後把nginx檔案伺服器,放到內網上,外網不可訪問 -------------------------------------- centos 6.
記錄一次vue-cli專案上線到阿里雲並配置Nginx伺服器的經歷
首先,買一臺雲伺服器是必要的,我使用的是阿里雲伺服器CentOS 7.4 64位作業系統。 在整個vue-cli專案上線過程中,我遇到了很多問題。不過,最終圓滿解決了,因此在這裡記錄一下。 遇到的問題: 雲伺服器連線 vue專案打包上線 nginx安裝配置 雲
[學習筆記] Python 虛擬環境的安裝以及django專案部署到nginx伺服器
安裝Python虛擬環境 sudo apt install python3-pip python3-dev build-essential sudo pip3 install --upgrade pip sudo pip3 install virtualenv MySQL
Nginx 之一 伺服器的安裝部署(一): LInux 環境下 Nginx 伺服器的安裝和基本配置
一、編譯和安裝前的準備工作 本部落格依賴環境: Linux Ubuntu 16.04 1.1 足夠的磁碟空間 能夠裝得下 Nginx 的軟體包和安裝檔案, 這個基本都能滿足。 1.2 需要的工具 為了編譯 Nginx 原始碼, 需要安裝標準的 GCC 編譯器。