Created
December 19, 2016 23:26
-
-
Save tkuennen/2935c485689e9f38e977fd36c59d6d33 to your computer and use it in GitHub Desktop.
This file contains 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
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