SonarQube Version: 7.6
Sonar Scanner 3.2.0.1227
Hi All,
I’ve got sonarqube deployed on kubernetes using the official helm chart. I made a modification to use a dockerfile I built that supports the developer edition of sonarqube. Everything worked great.
When I further modified the helm chart to use our ingress (so I can connect over https instead of http), the sonarqube pod started restarting and eventually hit a CrashedLoopBackOff
. Below are the logs for said pod kubectl logs $POD_NAME
. Does anyone have any idea what’s going on?
Also, I don’t believe my error is related to the Github App configuration is invalid
line from the logs below. I was receiving this error before my ingress.
Any help is greatly greatly appreciated
2019.02.06 15:26:45 INFO app[][o.s.a.AppFileSystem] Cleaning or creating temp directory /opt/sonarqube/temp
2019.02.06 15:26:45 INFO app[][o.s.a.es.EsSettings] Elasticsearch listening on /127.0.0.1:9001
2019.02.06 15:26:46 INFO app[][o.s.a.p.ProcessLauncherImpl] Launch process[[key='es', ipcIndex=1, logFilenamePrefix=es]] from [/opt/sonarqube/elasticsearch]: /opt/sonarqube/elasticsearch/bin/elasticsearch -Epath.conf=/opt/sonarqube/temp/conf/es
2019.02.06 15:26:46 INFO app[][o.s.a.SchedulerImpl] Waiting for Elasticsearch to be up and running
2019.02.06 15:26:46 INFO app[][o.e.p.PluginsService] no modules loaded
2019.02.06 15:26:46 INFO app[][o.e.p.PluginsService] loaded plugin [org.elasticsearch.transport.Netty4Plugin]
2019.02.06 15:27:09 INFO app[][o.s.a.SchedulerImpl] Process[es] is up
2019.02.06 15:27:09 INFO app[][o.s.a.p.ProcessLauncherImpl] Launch process[[key='web', ipcIndex=2, logFilenamePrefix=web]] from [/opt/sonarqube]: /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java -Djava.awt.headless=true -Dfile.encoding=UTF-8 -Djava.io.tmpdir=/opt/sonarqube/temp -Xmx512m -Xms128m -XX:+HeapDumpOnOutOfMemoryError -Djava.security.egd=file:/dev/./urandom -cp ./lib/common/*:/opt/sonarqube/lib/jdbc/postgresql/postgresql-42.2.5.jar org.sonar.server.app.WebServer /opt/sonarqube/temp/sq-process935063828467734124properties
2019.02.06 15:27:10 INFO web[][o.s.p.ProcessEntryPoint] Starting web
2019.02.06 15:27:11 INFO web[][o.a.t.u.n.NioSelectorPool] Using a shared selector for servlet write/read
2019.02.06 15:27:13 INFO web[][o.s.c.e.CoreExtensionsLoader] Loaded core extensions: developer-edition, branch-scanner, branch-server, developer, license
2019.02.06 15:27:13 INFO web[][c.s.B.A.C.A.A] Github App configuration is invalid. GitHub App feature is disabled. GithubAppConfiguration{id=null, name=null, privateKey=null, webhookSecret=null, checkRunName='SonarQube Code Analysis', globalAccountToken=null}
2019.02.06 15:27:14 INFO web[][o.e.p.PluginsService] no modules loaded
2019.02.06 15:27:14 INFO web[][o.e.p.PluginsService] loaded plugin [org.elasticsearch.join.ParentJoinPlugin]
2019.02.06 15:27:14 INFO web[][o.e.p.PluginsService] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin]
2019.02.06 15:27:14 INFO web[][o.e.p.PluginsService] loaded plugin [org.elasticsearch.transport.Netty4Plugin]
2019.02.06 15:27:17 INFO web[][o.s.s.e.EsClientProvider] Connected to local Elasticsearch: [127.0.0.1:9001]
2019.02.06 15:27:17 INFO web[][o.s.s.p.LogServerVersion] SonarQube Server / 7.6.0.21501 / d56689a5eb122c06cf87375828085609f5a68323
2019.02.06 15:27:17 INFO web[][o.sonar.db.Database] Create JDBC data source for jdbc:postgresql://sonarqube-postgresql:5432/sonarDB
2019.02.06 15:27:21 INFO web[][o.s.s.p.ServerFileSystemImpl] SonarQube home: /opt/sonarqube
2019.02.06 15:27:21 INFO web[][o.s.s.u.SystemPasscodeImpl] System authentication by passcode is disabled
2019.02.06 15:27:21 INFO web[][c.s.B.A.C.A.A] Github App configuration is invalid. GitHub App feature is disabled. GithubAppConfiguration{id=null, name=null, privateKey=null, webhookSecret=null, checkRunName='SonarQube Code Analysis', globalAccountToken=null}
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin Git / 1.7.0.1491 / 1d54e49a5f952dfb4ccded090f8043a2a62d0372
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin JaCoCo / 1.0.1.143 / 65c55e41e32c114704fd597ccea91fc55becb4ec
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin LDAP / 2.2.0.608 / 79dc3fa4393a29667673c70182f3016288b548b7
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarABAP / 3.7.0.1603 / 213e4402d98d171ad4f0262570dbd1b56086fb0d
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarC# / 7.10.0.7896 / 4e51d150065288432fd1411d29d5aebf2ab7f133
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarCFamily / 6.0.0.10816 / 0e782aa48f0b06a9360ff4ac071c6084103876b7
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarCSS / 1.0.3.724 / 3ad5232345519caed38a24c70fb77e91757833bf
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarFlex / 2.4.0.1222 / 68d9cb3b7daccbc4869c4f2b89d09218d26a0829
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarGo / 1.1.0.1612 / 1809c7be6d88396c0a1b8d597b1e9e0ed8d29730
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarHTML / 3.1.0.1615 / 4181edb5eff5605bec82dc0aa15ecd70eaa5857f
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarJS / 5.0.0.6962 / ac2fe7567f3dfeb3295e2e710afd8c06b7760e9d
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarJava / 5.10.1.16922 / 448c4b8fce8d8ac53a9a7a7265d4de1c1ac87a4e
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarKotlin / 1.4.0.155 / f71ae433edd0c1f1dbab3fed4d755ef17aef8573
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarPHP / 2.16.0.4355 / 80c76cb14e9eae6bd982fa6ac8c39b2de1f89b6f
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarPLSQL / 3.3.0.2273 / 85c938787864be0d0117ebe41255ca88b966ca76
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarPython / 1.11.0.2473 / 3ec86bb66699ff9ccf2c00c84f360210eb3ffd8d
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarRuby / 1.4.0.155 / f71ae433edd0c1f1dbab3fed4d755ef17aef8573
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarScala / 1.4.0.155 / f71ae433edd0c1f1dbab3fed4d755ef17aef8573
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarSwift / 4.1.0.3087 / e71ead60ade025c4f22a8c29fc32ab7c90606ec9
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarTS / 1.9.0.3766 / 4a4080b78001a78d758d1d0fa0190fb9496b6f57
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarTSQL / 1.3.1.3067 / e3fd7c40ee684219659ad48c0f8e94da15896abd
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarVB / 7.10.0.7896 / 4e51d150065288432fd1411d29d5aebf2ab7f133
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin SonarXML / 2.0.1.2020 / c5b84004face582d56f110e24c29bf9c6a679e69
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin Svn / 1.9.0.1295 / 942e075773975354e32691a60bfd968065703e04
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin Vulnerability Analysis / 7.6.0.3134 / b45fb57c3bbafc7098b3c2ce6c467b7b3669697c
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin Vulnerability Rules for C# / 7.6.0.3134 / b45fb57c3bbafc7098b3c2ce6c467b7b3669697c
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin Vulnerability Rules for Java / 7.6.0.3134 / b45fb57c3bbafc7098b3c2ce6c467b7b3669697c
2019.02.06 15:27:22 INFO web[][o.s.s.p.ServerPluginRepository] Deploy plugin Vulnerability Rules for PHP / 7.6.0.3134 / b45fb57c3bbafc7098b3c2ce6c467b7b3669697c
2019.02.06 15:27:24 INFO web[][o.s.s.p.d.m.c.PostgresCharsetHandler] Verify that database charset supports UTF8
2019.02.06 15:27:25 INFO web[][c.s.B.A.C.A.A] Github App configuration is invalid. GitHub App feature is disabled. GithubAppConfiguration{id=null, name=null, privateKey=null, webhookSecret=null, checkRunName='SonarQube Code Analysis', globalAccountToken=null}
2019.02.06 15:27:25 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.ws.WebServiceFilter@77e4f58a [pattern=UrlPattern{inclusions=[/api/system/migrate_db.*, ...], exclusions=[/api/properties*, ...]}]
2019.02.06 15:27:25 INFO web[][o.s.s.a.EmbeddedTomcat] HTTP connector enabled on port 9000
2019.02.06 15:27:27 INFO web[][c.s.B.A.C.A.A] Github App configuration is invalid. GitHub App feature is disabled. GithubAppConfiguration{id=null, name=null, privateKey=null, webhookSecret=null, checkRunName='SonarQube Code Analysis', globalAccountToken=null}
2019.02.06 15:27:29 INFO web[][o.s.s.p.UpdateCenterClient] Update center: https://update.sonarsource.org/update-center.properties (no proxy)
2019.02.06 15:27:33 INFO web[][o.s.s.s.LogServerId] Server ID: EA8D9556-AWhmrf9DecCazzNc9r6v
2019.02.06 15:27:33 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/plugins/download
2019.02.06 15:27:33 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/permissions/search_templates
2019.02.06 15:27:33 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/support/info
2019.02.06 15:27:33 INFO web[][o.s.s.t.TelemetryDaemon] Sharing of SonarQube statistics is enabled.
2019.02.06 15:27:33 INFO web[][o.s.s.n.NotificationDaemon] Notification service started (delay 60 sec.)
2019.02.06 15:27:33 INFO web[][com.sonarsource.C.H] Loaded virtual plugin License for SonarLint
2019.02.06 15:27:33 INFO web[][o.s.s.s.GeneratePluginIndex] Generate scanner plugin index
2019.02.06 15:27:33 INFO web[][o.s.s.s.RegisterPlugins] Register plugins
2019.02.06 15:27:33 INFO web[][o.s.s.s.RegisterMetrics] Register metrics
2019.02.06 15:27:34 INFO web[][o.s.s.r.RegisterRules] Register rules
2019.02.06 15:27:53 INFO web[][o.s.s.q.BuiltInQProfileRepositoryImpl] Load quality profiles
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Register quality profiles
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile css/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cpp/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile c/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile go/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kotlin/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile js/Sonar way Recommended
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile js/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile py/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile tsql/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ruby/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile plsql/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile web/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile flex/Sonar way
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile php/PSR-2
2019.02.06 15:27:54 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile php/Drupal
2019.02.06 15:27:55 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile php/Sonar way
2019.02.06 15:27:55 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile vbnet/Sonar way
2019.02.06 15:27:55 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile abap/Sonar way
2019.02.06 15:27:55 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile swift/Sonar way
2019.02.06 15:27:55 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ts/Sonar way
2019.02.06 15:27:55 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ts/Sonar way recommended
2019.02.06 15:27:55 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile objc/Sonar way
2019.02.06 15:27:55 INFO web[][o.s.s.s.RegisterPermissionTemplates] Register permission templates
2019.02.06 15:27:55 INFO web[][o.s.s.s.RenameDeprecatedPropertyKeys] Rename deprecated property keys
2019.02.06 15:27:55 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.ws.WebServiceFilter@356882e6 [pattern=UrlPattern{inclusions=[/api/issues/delete_comment.*, ...], exclusions=[/api/properties*, ...]}]
2019.02.06 15:27:55 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.ws.DeprecatedPropertiesWsFilter@48f9dfd8 [pattern=UrlPattern{inclusions=[/api/properties/*], exclusions=[]}]
2019.02.06 15:27:55 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.ws.WebServiceReroutingFilter@5aa935f7 [pattern=UrlPattern{inclusions=[/api/components/bulk_update_key, ...], exclusions=[]}]
2019.02.06 15:27:55 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.InitFilter@18bf2cfc [pattern=UrlPattern{inclusions=[/sessions/init/*], exclusions=[]}]
2019.02.06 15:27:55 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.OAuth2CallbackFilter@483387a5 [pattern=UrlPattern{inclusions=[/oauth2/callback/*], exclusions=[]}]
2019.02.06 15:27:55 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LoginAction@340c054e [pattern=UrlPattern{inclusions=[/api/authentication/login], exclusions=[]}]
2019.02.06 15:27:55 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LogoutAction@ba66d4e [pattern=UrlPattern{inclusions=[/api/authentication/logout], exclusions=[]}]
2019.02.06 15:27:55 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.ValidateAction@22421154 [pattern=UrlPattern{inclusions=[/api/authentication/validate], exclusions=[]}]
2019.02.06 15:27:55 INFO web[][o.s.s.p.p.PlatformLevelStartup] Running Developer Edition
2019.02.06 15:27:55 INFO web[][o.s.s.p.Platform] WebServer is operational
2019.02.06 15:27:55 INFO app[][o.s.a.SchedulerImpl] Process[web] is up
2019.02.06 15:27:55 INFO app[][o.s.a.p.ProcessLauncherImpl] Launch process[[key='ce', ipcIndex=3, logFilenamePrefix=ce]] from [/opt/sonarqube]: /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java -Djava.awt.headless=true -Dfile.encoding=UTF-8 -Djava.io.tmpdir=/opt/sonarqube/temp -Xmx512m -Xms128m -XX:+HeapDumpOnOutOfMemoryError -cp ./lib/common/*:/opt/sonarqube/lib/jdbc/postgresql/postgresql-42.2.5.jar org.sonar.ce.app.CeServer /opt/sonarqube/temp/sq-process8080506660222346706properties
2019.02.06 15:27:56 INFO ce[][o.s.p.ProcessEntryPoint] Starting ce
2019.02.06 15:27:56 INFO ce[][o.s.ce.app.CeServer] Compute Engine starting up...
2019.02.06 15:27:57 INFO ce[][o.s.c.e.CoreExtensionsLoader] Loaded core extensions: developer-edition, branch-scanner, branch-server, developer, license
2019.02.06 15:27:57 INFO ce[][c.s.B.A.C.A.A] Github App configuration is invalid. GitHub App feature is disabled. GithubAppConfiguration{id=null, name=null, privateKey=null, webhookSecret=null, checkRunName='SonarQube Code Analysis', globalAccountToken=null}
2019.02.06 15:27:58 INFO ce[][o.e.p.PluginsService] no modules loaded
2019.02.06 15:27:58 INFO ce[][o.e.p.PluginsService] loaded plugin [org.elasticsearch.join.ParentJoinPlugin]
2019.02.06 15:27:58 INFO ce[][o.e.p.PluginsService] loaded plugin [org.elasticsearch.percolator.PercolatorPlugin]
2019.02.06 15:27:58 INFO ce[][o.e.p.PluginsService] loaded plugin [org.elasticsearch.transport.Netty4Plugin]
2019.02.06 15:28:01 INFO ce[][o.s.s.e.EsClientProvider] Connected to local Elasticsearch: [127.0.0.1:9001]
2019.02.06 15:28:01 INFO ce[][o.sonar.db.Database] Create JDBC data source for jdbc:postgresql://sonarqube-postgresql:5432/sonarDB
2019.02.06 15:28:04 INFO ce[][o.s.s.p.ServerFileSystemImpl] SonarQube home: /opt/sonarqube
2019.02.06 15:28:05 INFO ce[][c.s.B.A.C.A.A] Github App configuration is invalid. GitHub App feature is disabled. GithubAppConfiguration{id=null, name=null, privateKey=null, webhookSecret=null, checkRunName='SonarQube Code Analysis', globalAccountToken=null}
2019.02.06 15:28:05 INFO ce[][o.s.c.c.CePluginRepository] Load plugins
2019.02.06 15:28:07 INFO ce[][c.s.B.A.C.A.A] Github App configuration is invalid. GitHub App feature is disabled. GithubAppConfiguration{id=null, name=null, privateKey=null, webhookSecret=null, checkRunName='SonarQube Code Analysis', globalAccountToken=null}
2019.02.06 15:28:07 INFO ce[][c.s.B.A.C.A.A] Github App configuration is invalid. GitHub App feature is disabled. GithubAppConfiguration{id=null, name=null, privateKey=null, webhookSecret=null, checkRunName='SonarQube Code Analysis', globalAccountToken=null}
2019.02.06 15:28:09 INFO ce[][o.s.c.c.ComputeEngineContainerImpl] Running Developer edition
2019.02.06 15:28:09 INFO ce[][o.s.c.q.PurgeCeActivities] Delete the Compute Engine tasks created before 1533914889287
2019.02.06 15:28:09 INFO ce[][o.s.c.q.PurgeCeActivities] Delete the Scanner contexts tasks created before 1547047689360
2019.02.06 15:28:09 INFO ce[][o.s.ce.app.CeServer] Compute Engine is operational
2019.02.06 15:28:09 INFO app[][o.s.a.SchedulerImpl] Process[ce] is up
2019.02.06 15:28:09 INFO app[][o.s.a.SchedulerImpl] SonarQube is up
2019.02.06 15:28:22 INFO app[][o.s.a.SchedulerImpl] Stopping SonarQube
2019.02.06 15:28:22 INFO ce[][o.s.p.StopWatcher] Stopping process
2019.02.06 15:28:22 INFO ce[][o.s.ce.app.CeServer] Compute Engine is stopping...
2019.02.06 15:28:22 INFO ce[][o.s.c.t.CeProcessingSchedulerImpl] Waiting for workers to finish in-progress tasks
2019.02.06 15:28:23 INFO ce[][o.s.ce.app.CeServer] Compute Engine is stopped
2019.02.06 15:28:24 INFO app[][o.s.a.SchedulerImpl] Process [ce] is stopped
2019.02.06 15:28:24 INFO web[][o.s.p.StopWatcher] Stopping process
2019.02.06 15:28:27 INFO app[][o.s.a.SchedulerImpl] Process [web] is stopped
2019.02.06 15:28:27 INFO app[][o.s.a.SchedulerImpl] Process [es] is stopped
2019.02.06 15:28:27 WARN app[][o.s.a.p.AbstractProcessMonitor] Process exited with exit value [es]: 143
2019.02.06 15:28:27 INFO app[][o.s.a.SchedulerImpl] SonarQube is stopped