centos 最简单的服务程序
Linux平臺下的service程序編寫指南
Hu Dennis Sep 24, 2010轉(zhuǎn)載注明出處http://blog.csdn.net/gobitan
?
摘要:本文主要介紹了如何編寫一個service服務(wù)所涉及的兩個主要方面。1)將一個普通程序裝成daemon程序;2)編寫service方式的shell腳本。并以C語言為例,基于Red hat 企業(yè)版5.3平臺演示了一個service服務(wù)程序從代碼編寫到腳本調(diào)試以及測試運行全過程。
?
(一)? Service介紹
Service是一種被稱為守護(hù)進(jìn)程(daemon)的程序。它通常一旦啟動后就在后臺持續(xù)運行,通常在等待什么輸入或者監(jiān)控系統(tǒng)有什么變化。例如Apache服務(wù)器有一個叫httpd的守護(hù)進(jìn)程監(jiān)聽80端口以等待http請求。
Service程序通常通過service命令來啟動或停止等。例如apache服務(wù)的啟動可通過”service httpd start”來啟動。
通過” chkconfig --list”可以查看系統(tǒng)當(dāng)前所有的service服務(wù)。
通過” service --status-all”可以查看系統(tǒng)當(dāng)前所有service服務(wù)的狀態(tài)。
?
要自己編寫一個類似httpd的service方式的服務(wù)應(yīng)該包括兩個部分:(1)將普通程序包裝成daemon程序;(2)編寫service控制腳本來管理daemon程序。
因此,每個service服務(wù)在/etc/rc.d/目錄下都對應(yīng)一個可執(zhí)行的腳本。如apache的httpd對應(yīng)/etc/init.d/httpd。
?
參考資料:http://bobpeers.com/linux/services.php
?
(二)如何將普通程序包裝成daemon程序
??? 這里僅介紹一種較為簡單的方式,關(guān)于其原理及更詳細(xì)的介紹請參見本節(jié)參考資料。
??? linux提供了一個名叫daemon的函數(shù)來初始化環(huán)境,如下:
????????????? int daemon(int nochdir, int noclose);
??? 使用該函數(shù)需加入#include <stdlib.h>頭文件包含。調(diào)用該函數(shù)之后,其后的程序?qū)詃aemon方式運行。
??? 下面以Hello world為例,因為daemon程序是一個持續(xù)運行程序,為了測試運行本文以while+sleep來模擬。
#include <stdio.h> #include <stdlib.h>int main() {daemon(0,0);while(1){printf("Hellow World!/n");sleep(100000);} }保存上面的測試程序為dennis.c,執(zhí)行如下編譯命令得到dennisd守護(hù)進(jìn)程程序。
#gcc -c dennis.c
# gcc -o dennisd dennis.o
?
??? 實際運行中,例如你編寫了一個tcp服務(wù)器程序,可以程序?qū)懗梢粋€函數(shù)(如tcp_server),然后將while部分更換為你的函數(shù)tcp_server()即可。如下:
#include <stdio.h> #include <stdlib.h>int main() {daemon(0,0);tcp_server(); }參考資料: http://www.netzmafia.de/skripten/unix/linux-daemon-howto.html
?
(三)如何編寫service控制腳本
??? 首先腳本必須放在/etc/init.d/目錄下,因此本文在先創(chuàng)建/etc/init.d/dennisd腳本文件。內(nèi)容如下:
#!/bin/bash # # Description: This shell script takes care of starting and stopping dennis # Hu Dennis created on Sep. 24th, 2010 # # Source function library . /etc/init.d/functions#the service name for example: dennis SNAME=dennisd#the full path and name of the daemon program #Warning: The name of executable file must be identical with service name PROG=/usr/bin/$SNAME# start function start() {#check the daemon status firstif [ -f /var/lock/subsys/$SNAME ]thenecho "$SNAME is already started!"exit 0;elseaction "Starting $SNAME ..." $PROG[ $? -eq 0 ] && touch /var/lock/subsys/$SNAMEexit 0;fi }#stop function stop() {echo "Stopping $SNAME ..."killproc $SNAMErm -rf /var/lock/subsys/$SNAME }case "$1" in start)start;; stop)stop;; reload|restart)stopstart;; status)status $SNAME;; *)echo $"Usage: $0 {start|stop|restart|status}"exit 1 esac腳本較為簡單,再次不做過多解釋。然后執(zhí)行如下命令給dennisd增加可執(zhí)行權(quán)限:
#chmod +x dennisd
?
(四)常見調(diào)試錯誤
??? 在調(diào)試該腳本的時候常見的集中錯誤如下:
(1)dennisd: unrecognized service:先檢查/etc/rc.d/init.d/dennisd是否存在,然后再看該文件是否有可執(zhí)行權(quán)限。
(2)env: /etc/init.d/dennisd: No such file or directory:這種情況一般是windows與linux的格式兼容問題,執(zhí)行dos2unix將dos格式轉(zhuǎn)換程序linux格式(ubuntu下為fromdos命令)。
(3)Usage: status [-p pidfile] {program}: status后面的參數(shù)不對
(4)dennisd dead but subsys locked:可執(zhí)行程序的名字需要與service名字保持一致。
?
(五)測試運行
??? 將第二步編譯得到的dennisd程序拷貝至/usr/bin/目錄下,然后執(zhí)行如下命令測試:
(1)啟動服務(wù)
???? [root init.d]# service dennisd start
Starting dennisd ... [? OK? ]
? 通過ps命名確認(rèn)dennisd已經(jīng)啟動:
???????? [root init.d]# ps -ef|grep dennisd
root????? 3885???? 1? 0 14:30 ???????? 00:00:00 /usr/bin/dennisd
?
(2)查看狀態(tài)
[root init.d]# service dennisd status
dennisd (pid 3885) is running...
?
(3)停止服務(wù)
[root init.d]# service dennisd stop
Stopping dennisd ...
再執(zhí)行status命令查看狀態(tài)
[root init.d]# service dennisd status
dennisd is stopped
?? (4)多次啟動
??????? [root init.d]# service dennisd start
Starting dennisd ... [? OK? ]
[root init.d]# service dennisd start
dennisd is already started!
如果服務(wù)已經(jīng)啟動,系統(tǒng)會提示而不會啟動多個。
?
(六)結(jié)束語
??? 本文以C語言為例,在linux環(huán)境下演示了一個service服務(wù)程序從代碼編寫到腳本調(diào)試以及測試運行全過程,希望對有此需求的朋友有所幫助!
總結(jié)
以上是生活随笔為你收集整理的centos 最简单的服务程序的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Android开发技术周报 Issue#
- 下一篇: css选择器、权重