linux添加service服务,设置自启动
例如:注册一个oa-server的服务
创建文件: 在/etc/init.d/oa-server
1 |
|
- 注意:
#chkconfig, #description 不要少,设置自启动需要
.
服务启动: service oa-server start
服务关闭: service oa-server shutdown
设置自启: chkconfig oa-server on
关闭自启: chkconfig oa-server off
linux添加service服务,设置自启动
例如:注册一个oa-server的服务
创建文件: 在/etc/init.d/oa-server
1 | #!/bin/sh |
#chkconfig, #description 不要少,设置自启动需要
.服务启动: service oa-server start
服务关闭: service oa-server shutdown
设置自启: chkconfig oa-server on
关闭自启: chkconfig oa-server off
微信支付