Skip to content

Instantly share code, notes, and snippets.

@tkuennen
Created December 19, 2016 23:26
Show Gist options
  • Save tkuennen/2935c485689e9f38e977fd36c59d6d33 to your computer and use it in GitHub Desktop.
Save tkuennen/2935c485689e9f38e977fd36c59d6d33 to your computer and use it in GitHub Desktop.
sudo yum install postgresql-server postgres
sudo ~/atlassian-confluence-6.0.2-x64.bin
sudo /sbin/chkconfig postgresql-9.6 on
sudo /sbin/service postgresql-9.6 start
sudo /sbin/service postgresql-9.6 initdb
sudo su - postgres
psql
CREATE SCHEMA confluence;
GRANT ALL on confluence TO confluence;
sudo vim /var/lib/pgsql/9.6/data/pg_hba.conf
sudo /sbin/service postgresql-9.6 initdb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment