Install PostreSQL if you haven't already
~$ sudo apt-get update
~$ sudo apt-get install postgresql postgresql-client
Create database user 'jira'
~$ sudo su - postgres
~$ createuser -P jira
Enter password for new role:
Enter it again:
~$ sudo -u postgres psql -c 'alter user jira with createdb' postgres
Create database 'jiradb'
~$ sudo su - jira
$ createdb -E UNICODE -l C -T template0 jiradb
$ exit
Brak komentarzy:
Prześlij komentarz