Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MenukaIshan/974b780f0327983f2add1940f9f466d8 to your computer and use it in GitHub Desktop.
Save MenukaIshan/974b780f0327983f2add1940f9f466d8 to your computer and use it in GitHub Desktop.
SonarQube Postgres
# Simple SonarQube database and user creation for Postgresql
#
sudo -u postgres psql postgres
CREATE DATABASE sonar;
CREATE USER sonar WITH PASSWORD 'verysecret';
GRANT ALL PRIVILEGES ON DATABASE sonar TO sonar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment