Nginx腳本一鍵安裝

#!/bin/bash
#判斷是否是roo用戶
if [ $(id -u) != "0" ]; then
        echo "Error:You must be root to run this script"
fi
#每次使用只需修改自定義內容即可
#自定義用戶名和組
User="nginx"
Group="nginx"
#自定義nginx變量
Install_Path="/usr/local/nginx"
Package_Type=".tar.gz"
Version="nginx-1.9.8"
Package=$Version$Package_Type
Setup_path="/root/"
RPM="nginx"
#自定義/var/tmp/nginx目錄
DIR="/var/tmp/nginx"

#安裝依賴關係
yum group install "Development Tools" "Server Platform Deveopment"
yum install -y curl openssl-devel pcre-devel
#判斷nginx組是否存在
egrep "^$group" /etc/group >& /dev/null
if [ $? -ne 0 ]
then
    groupadd $group
else
    echo " The $Group user group already exists."
fi
#判斷nginx用戶是否存在
egrep "^$user" /etc/passwd >& /dev/null
if [ $? -ne 0 ]
then
    useradd -g $group $user
else
    echo " The $User user already exists."
fi

#創建/var/tmp/nginx目錄
#mkdir /var/tmp/nginx
if [ -e $dir ]
then
	echo " $DIR Directory Already Exists."
else 
	mkdir /var/tmp/nginx
fi	
#判斷文件是否存在
if [ -e $Setup_path$Version$Package_Type ]
then
        echo "$Package The Package exists."
else
        echo "$Package The package does not exist."
fi
#判斷是否用RPM方式安裝
function RPM_Install(){
rpm -qa | egrep "$RPM" >>/dev/null
	if [ $? -eq 0 ]
	then
		echo "$RPM is install Yes."
	else 
		echo "$RPM is Not install."
	fi
}
RPM_Install
#編譯安裝nginx
cd $Setup_path
tar -zxvf $Package
cd $Version
configure_opts=(
--prefix=$Install_Path 
--sbin-path=$Install_Path/sbin/nginx 
--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/nginx.pid 
--lock-path=/var/lock/nginx.lock 
--user=nginx 
--group=nginx 
--with-http_ssl_module 
--with-http_flv_module
--with-http_stub_status_module 
--with-http_gzip_static_module 
--http-client-body-temp-path=/var/tmp/nginx/client 
--http-proxy-temp-path=/var/tmp/nginx/proxy 
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi 
--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi 
--http-scgi-temp-path=/var/tmp/nginx/scgi 
--with-pcre
)
./configure ${configure_opts[@]}
if [[ $? -eq 0 ]]
then
	make && make install
else
	echo "編譯失敗,請重新編譯" && exit 1
fi
#添加Nginx命令到環境變量
cat >/etc/profile.d/nginx.sh <<EOF
export PATH=/usr/local/nginx/sbin/:$PATH
EOF

#開機啓動
chkconfig --add nginx
chkconfig nginx on
chkconfig --list | grep nginx
#啓動服務
nginx
ss -tnlp | grep nginx

不足之處:沒有啓動文件,我是直接加了個環境變量用nginx回車啓動的

看到此篇文章的大佬們,有啓動文件的希望把啓動文件加進來,希望給補充下,j_0069.gif

有錯誤什麼的,或者有更好的建議請留言

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章