我在服务器上实现了SonarQube
,我执行了大部分配置远程。因此,无论何时安装插件,都需要重新启动SonarQube
,并且每次必须明确(手动)重新启动SonarQube
服务器。
有没有办法远程重启SonarQube
?
例如,如jenkins
到http://sonar_url/restart
。
答案 0 :(得分:6)
从SonarQube 5.4开始,您可以直接从UI(Administrators should be able to request a server restart from web console)或使用WS / api / system / restart(WS /api/system/restart should trigger a true restart of SQ)重新启动它。
答案 1 :(得分:1)
POST api / system / restart 自4.3重启服务器。 仅在开发模式下可用(sonar.web.dev = true)。 Ruby on Rails扩展不会重新加载
此致
米歇尔
答案 2 :(得分:1)
在我的SonarQube实例(v5.6)中,我使用下面的curl命令重新启动SonarQube服务器
curl -u username:password -X POST https://SONAR_INSTANCE/api/system/restart