windows版本jenkins重启的方法

一种是cmd命令,一种是浏览器url
一,cmd命令方式
1.以管理员身份运行cmd.exe
2.进入到jenkins安装目录
cd C:\Program Files (x86)\Jenkins
3.停止服务:jenkins.exe stop
2019-05-05 22:31:21,203 INFO - Stopping the service with id ‘Jenkins’
4.启动服务:jenkins.exe start
2019-05-05 22:32:09,753 INFO - Starting the service with id ‘Jenkins’
5.重启服务:jenkins.exe restart
2019-05-05 22:33:16,510 INFO - Restarting the service with id ‘Jenkins’
二,一种是浏览器url
1.关闭jenkins服务
http://localhost:8080/exit 网址就能关闭jenkins服务。
2.重新启动jenkins服务器
http://localhost:8080/restart 网址就能重启jenkins服务。
3. 重新加载配置信息
http://localhost:8080/reload 网址就能重新加载配置信息。

你可能感兴趣的:(jenkins)