Forked from RawToast/Basic SonarQube Postgres Database Setup
Created
October 19, 2016 09:16
-
-
Save actionjack/7d260a914a95f4e12256c887fc8db2d2 to your computer and use it in GitHub Desktop.
SonarQube Postgres
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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