Getting elasticsearch \"can not run as root\" error after upgrading from SonarQube 6.5 to 6.6. Nothing else changed.
CentOS release 6.8 (Final) Java(TM) SE Runtime Envir
I also experienced this problem, running SonarQube, as root, on Centos 7, not inside docker. As mentioned in previous comments, the problem comes from SonarQube upgrading ElasticSearch, and the new version no longer allows itself to be run as root.
In my environment the fix was easy enough: I had already created a user ("sonar") and group ("sonar") to "own" the sonarqube files. Since my SonarQube process had been running as root, it had left the logs and temp files owned by root.
1. I stopped the service.
2. Reassigned all the ownserships ("chown -R sonar:sonar /opt/sonarqube-6.6")
3. Changed #RUN_AS_USER=
in /opt/sonarqube-6.6/bin/linux-x86-64/sonar.sh
line 48 to RUN_AS_USER=sonar
and both the sonarqube service and its elasticsearch service restarted without further problems. I was left having to go to http://
to upgrade the database and from there everything worked fine.