Created
December 2, 2019 18:16
-
-
Save mgulsoy/629cd855419a9c0e1d00bcd433e8d2ca to your computer and use it in GitHub Desktop.
Debian 9 Üzerine Nginx ve Redmine Kurulumu
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
root@debian-s-9:~# su - -c "psql postgres" postgres | |
psql (9.6.15) | |
Type "help" for help. | |
postgres=# CREATE ROLE redmine LOGIN ENCRYPTED PASSWORD 'çok_gizli_parola' NOINHERIT VALID UNTIL 'infinity'; | |
... | |
postgres=# CREATE DATABASE redmine WITH ENCODING='UTF8' OWNER=redmine; | |
... | |
postgres=# \q |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment