linux怎么重新启动jetty
答案:1 悬赏:70 手机版
解决时间 2021-01-21 06:23
- 提问者网友:战皆罪
- 2021-01-20 12:27
linux怎么重新启动jetty
最佳答案
- 五星知识达人网友:woshuo
- 2021-01-20 13:12
在/etc/init.d/下创建jetty文件内容:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
vim /etc/init.d/jetty
#内容如下:
#!/bin/bash
# chkconfig: 35 95 1
# description: script to start/stop jetty case $1 in start)
sh /opt/startjetty.sh ;; stop)
sh /opt/stopjetty.sh ;; *)
echo "Usage: $0 (start|stop)" ;; esac
#更改权限
chmod 775 jetty
# 加入自动启动
chkconfig –add jetty
#查看自动启动设置
chkconfig –list jetty
jetty 0:off 1:off 2:off 3:on 4:off 5:on 6:off
以后可以用以下命令启动和停止脚本
1
2
service jetty start #启动
service jettystop #停止
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
vim /etc/init.d/jetty
#内容如下:
#!/bin/bash
# chkconfig: 35 95 1
# description: script to start/stop jetty case $1 in start)
sh /opt/startjetty.sh ;; stop)
sh /opt/stopjetty.sh ;; *)
echo "Usage: $0 (start|stop)" ;; esac
#更改权限
chmod 775 jetty
# 加入自动启动
chkconfig –add jetty
#查看自动启动设置
chkconfig –list jetty
jetty 0:off 1:off 2:off 3:on 4:off 5:on 6:off
以后可以用以下命令启动和停止脚本
1
2
service jetty start #启动
service jettystop #停止
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯