CentOS7-啟動|重啟|停止|狀態服務腳本

来源:https://www.cnblogs.com/sre-chan/archive/2023/04/02/17280849.html
-Advertisement-
Play Games

源碼編譯安裝方法 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/

-------------------------------------------

個性簽名:今天做了別人不想做的事,明天你就做得到別人做不到的事,嘗試你都不敢,你拿什麼贏!

如果覺得這篇文章對你有小小的幫助的話,記得在右下角點個“推薦”哦,博主在此感謝!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 原創:扣釘日記(微信公眾號ID:codelogs),歡迎分享,非公眾號轉載保留此聲明。 上個月,我們一個java服務上線後,偶爾會發生記憶體OOM(Out Of Memory)問題,但由於OOM導致服務不響應請求,健康檢查多次不通過,最後部署平臺kill了java進程,這導致定位這次OOM問題也變得困 ...
  • JavaSE:註解與反射(Annotation & Reflection) ​ 註解和框架是所有框架的底層,如Mybatis,spring。框架的底層實現機制就是註解和反射。註解相比於註釋,除了能較為直接的表示出這部分模塊的功能,也能實現一定的具體功能。 01 初識註解 1.1 什麼是註解 Anno ...
  • 多線程指的是在一個程式中同時運行多個線程,這些線程可以獨立運行或者相互協作,從而完成更加複雜的任務。Java中的多線程可以使用synchronized關鍵字來實現線程同步,避免多個線程同時訪問共用資源而導致的數據錯誤。此外,Java中還提供了Lock、Condition、Semaphore等類和介面... ...
  • 最近鴿了挺久的,因為最近要做課設,再加上被這個工程的調試給難到了。 在做該工程的時候,有一個良好的項目管理習慣會讓開發的時候不會讓人那麼的高血壓。 特別要註意的是,非同步FIFO的讀寫時鐘的速率匹配問題,這個問題卡了我好久。 1、sobel運算元 Sobel 演算法是像素圖像邊緣檢測中最重要的運算元之一,在 ...
  • 查看鏡像 conda config --show channels 刪除鏡像 conda config --remove channels 源名稱或鏈接 恢復預設鏡像 conda config --remove-key channels 添加鏡像 清華鏡像更新了 conda config --add ...
  • Soda.Http 基於HttpClient封裝的 Http 請求庫。如果有什麼好想法,可以提 Issue 或者 Pr。,如果想要使用,直接在nuget搜索Soda.Http即可。 Github項目地址:Soda.Http 用法 1 預載 預載配置並不是必須的,但是有助於我們進行一些通用基礎設置,例 ...
  • 1. 微軟擴展官網 微軟擴展官網:—>Visual Studio Marketplace 2. 待安裝的擴展包 | 序號 | 擴展包(vsix包) | 官方說明 | | | | | | 1 | ClaudiaIDE | 此擴展更改編輯器的背景圖像 | | 2 | Visual Studio Colo ...
  • ​ 一、前言 在之前的STM32的GPIO理論基礎知識中,分別對基本結構和工作模式進行了詳細的介紹。GPIO基本結構中主要對GPIO內部的各個功能電路逐一的進行的分析;GPIO工作模式中主要介紹GPIO應用在不同的使用場景下,GPIO埠的靜態特征配置和動態的工作模式,同時對信號的工作流進行了分析。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...