源碼編譯安裝方法 1、上傳包nginx-1.10.0.tar.gz至服務端 # 解壓到工作目錄 [root@template ~]# tar xf nginx-1.10.0.tar.gz -C /usr/local/src/ # 切換至Nginx目錄下,找到configure [root@templ ...
源碼編譯安裝方法
1、上傳包nginx-1.10.0.tar.gz至服務端
# 解壓到工作目錄
[root@template ~]# tar xf nginx-1.10.0.tar.gz -C /usr/local/src/
# 切換至Nginx目錄下,找到configure
[root@template ~]# cd /usr/local/src/
[root@template src]# ll
total 0
drwxr-xr-x. 8 1001 1001 158 Apr 26 2016 nginx-1.10.0
[root@template src]# cd nginx-1.10.0/
[root@template nginx-1.10.0]# ll
total 668
drwxr-xr-x. 6 1001 1001 4096 Apr 2 17:25 auto
-rw-r--r--. 1 1001 1001 262619 Apr 26 2016 CHANGES
-rw-r--r--. 1 1001 1001 400302 Apr 26 2016 CHANGES.ru
drwxr-xr-x. 2 1001 1001 168 Apr 2 17:25 conf
-rwxr-xr-x. 1 1001 1001 2481 Apr 26 2016 configure
drwxr-xr-x. 4 1001 1001 72 Apr 2 17:25 contrib
drwxr-xr-x. 2 1001 1001 40 Apr 2 17:25 html
-rw-r--r--. 1 1001 1001 1397 Apr 26 2016 LICENSE
drwxr-xr-x. 2 1001 1001 21 Apr 2 17:25 man
-rw-r--r--. 1 1001 1001 49 Apr 26 2016 README
drwxr-xr-x. 9 1001 1001 91 Apr 2 17:25 src
2、安裝rpm包,查看他的腳本文件
[root@node01 ~]# yum install nginx-1.10.0-1.el7.ngx.x86_64.rpm -y
3、在rpm包上查看所屬組信息
[root@node01 ~]# id nginx
uid=305(nginx) gid=305(nginx) groups=305(nginx)
4、創建用戶信息
[root@template ~]# groupadd nginx -r -g 498
[root@template ~]# useradd nginx -r -u 498 -g 498 -c "nginx user" -d /etc/nginx -s /sbin/nologin
5、創建日誌文件目錄
# 預設情況下是沒有的
[root@template nginx-1.10.0]# ll /var/log/nginx
ls: cannot access /var/log/nginx: No such file or directory
[root@template nginx-1.10.0]# mkdir /var/log/nginx
6、可以用此選項查看編譯過程需要的參數文件
[root@template nginx-1.10.0]# ./configure --help
7、編譯,但是沒有裝一些環境,在編譯中報錯中缺什麼安裝什麼包
[root@template nginx-1.10.0]# ./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 \
> --http-log-path=/var/log/nginx/access.log \
> --pid-path=/var/run/nginx.pid \
> --lock-path=/var/run/nginx.lock \
> --user=nginx --group=nginx \
> --with-http_ssl_module \
> --with-threads
checking for OS
+ Linux 3.10.0-1160.el7.x86_64 x86_64
checking for C compiler ... not found
./configure: error: C compiler cc is not found
8、解決第一個報錯信息,缺少C環境
[root@template nginx-1.10.0]# yum install gcc gcc-c++ make -y
9、調出命令繼續編譯,解決報錯
./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.
# 安裝一個對應庫文件的開發包
[root@template nginx-1.10.0]# yum install pcre-devel -y
10、繼續編譯
./configure: error: SSL modules require the OpenSSL library.
You can either do not enable the modules, or install the OpenSSL library
into the system, or build the OpenSSL library statically from the source
with nginx by using --with-openssl=<path> option.
[root@template nginx-1.10.0]# yum install openssl-devel -y
11、再次編譯,最後make && make install
[root@template nginx-1.10.0]# ./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 --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --user=nginx --group=nginx --with-http_ssl_module --with-threads
[root@template nginx-1.10.0]# make && make install
12、修改pid
logs/nginx.pid
13、切換到/etc/init.d/腳本目錄下編寫Nginx腳本
[root@template ~]# cd /etc/init.d/
[root@template init.d]# cat nginx
#!/bin/sh
#
# nginx - this script starts and stops the nginx daemin
#
# chkconfig: - 85 15
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \
# proxy and IMAP/POP3 proxy server
# processname: nginx
# config: /www/wdlinux/nginx/conf/nginx.conf
# pidfile: /www/wdlinux/nginx/logs/nginx.pid
# Url http://www.wdlinux.cn
# Last Updated 2010.06.01
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0
nginx="/usr/local/nginx/sbin/nginx"
prog=$(basename $nginx)
NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"
NGINX_PID="/usr/local/nginx/logs/nginx.pid"
[ -f /etc/sysconfig/nginx ] && . /etc/sysconfig/nginx
lockfile=/var/lock/subsys/nginx
start() {
[ -x $nginx ] || exit 5
[ -f $NGINX_CONF_FILE ] || exit 6
echo -n $"Starting $prog: "
daemon $nginx -c $NGINX_CONF_FILE
retval=$?
echo
#service php-fpm start
[ $retval -eq 0 ] && touch $lockfile
return $retval
}
stop() {
echo -n $"Stopping $prog: "
$nginx -s stop
echo_success
retval=$?
echo
#service php-fpm stop
[ $retval -eq 0 ] && rm -f $lockfile
return $retval
}
restart() {
stop
start
}
reload() {
configtest || return $?
echo -n $"Reloading $prog: "
$nginx -s reload
RETVAL=$?
echo
}
force_reload() {
restart
}
configtest() {
$nginx -t -c $NGINX_CONF_FILE
}
rh_status() {
status $prog
}
rh_status_q() {
rh_status >/dev/null 2>&1
}
case "$1" in
start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart|configtest)
$1
;;
reload)
rh_status_q || exit 7
$1
;;
force-reload)
force_reload
;;
status)
rh_status
;;
condrestart|try-restart)
rh_status_q || exit 0
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
exit 2
esac
14、增加腳本你的執行許可權
[root@template init.d]# chmod +x nginx
15、添加到啟動服務中
[root@template init.d]# chkconfig --add nginx
[root@template init.d]# chkconfig nginx on
16、測試
方式二:通過rpm包的腳本修改
[root@node01 system]# cat nginx.service
[Unit]
Description=nginx - high performance web server
Documentation=http://nginx.org/en/docs/
After=network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
PIDFile=/run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t -c /etc/nginx/nginx.conf
ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true
[Install]
WantedBy=multi-user.target
[root@node01 system]# pwd
/usr/lib/systemd/system
參數說明:
Unit:
Description:描述信息
After:定義unit的啟動次序,表示當前unit應該晚於哪些unit啟動,其功能與Before相反;
Requires:依賴到的其它units,強依賴,被依賴的units無法激活時,當前unit即無法激活;
Wants:依賴到的其它units,弱依賴;
Conflicts:定義units間的衝突關係。
Service:
Type:定義影響ExecStart及相關參數功能的unit進程啟動類型;
simple:預設值,這個daemon主要由ExecStart接的指令串來啟動,啟動後常駐於記憶體中;
forking:由ExacStart啟動的程式透過spawns延伸出其它子程式來作為此deamon的主要服務。原生父程式在啟動結束後就會終止。
oneshot:與simple類似,不過這個程式在完成工作後就結束,不常駐記憶體;
dbus:與simple類似,但這個daemon必須要在取得一個D-Bus的名稱後,才會繼續運作。因此通常也要同時設定BusName=才行;
notify:在啟動完成後會發送一個通知消息。還需要配合NotifyAccess來讓Systemd接收消息;
idle:與simple類似,要執行這個daemon必須要所有的工作都順利執行完畢後才會執行。這類的daemon通常是開機到最後才執行即可的服務。
EnvironmentFile:環境配置文件;
ExecStart:指明啟動unit要運行命令或腳本的絕對路徑;
ExecStartPre:在ExecStart之前運行的絕對路徑;
ExecStartPost:在ExecStart之後運行的絕對路徑;
ExecStop:指明停止unit要運行的命令或腳本的絕對路徑;
Restart:當設定Restart=1時,則當次daemon服務意外終止後,會再次自動啟動。
PrivateTmp:true/false表示是否給服務分配獨立的臨時空間
Install:
Alias:別名,可使用systemctl command Alias.service
RequiredBy:被哪些units所依賴,強依賴;
WantedBy:被哪些units所依賴,弱依賴;
Also:安裝本服務的時候還要安裝別的相關服務。
作者:ChAn
出處:http://www.cnblogs.com/sre-chan/
-------------------------------------------
個性簽名:今天做了別人不想做的事,明天你就做得到別人做不到的事,嘗試你都不敢,你拿什麼贏!
如果覺得這篇文章對你有小小的幫助的話,記得在右下角點個“推薦”哦,博主在此感謝!