linux service 例子

Posted lisqorz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux service 例子相关的知识,希望对你有一定的参考价值。

/etc/init.d/ 中创建新文件

#/bin/sh  
# 检查第一个参数是什么来执行对应动作
case $1 in  
          start)  /usr/local/php/bin/php-cgi -b 127.0.0.1:9000;;  
          stop)   /usr/local/php/bin/php-cgi -q;;  
esac  

以上是关于linux service 例子的主要内容,如果未能解决你的问题,请参考以下文章

golang goroutine例子[golang并发代码片段]

分享几个实用的代码片段(附代码例子)

分享几个实用的代码片段(附代码例子)

Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段

如何创建片段以重复变量编号中的代码行

Python 之 Socket编程(TCP/UDP)