PostreSQL

Post Reply
User avatar
Hellfireson
Администратор
Posts: 71
Joined: 14 Oct 2017, 14:03

PostreSQL

Post by Hellfireson »

Вход и создание БД в PostreSQL

Code: Select all

sudo -u postgres createuser --pwprompt nextcloud

Code: Select all

sudo -u postgres createdb --encoding=UTF8 --locale=en_US.UTF-8 --owner=nextcloud nextcloud
User avatar
Hellfireson
Администратор
Posts: 71
Joined: 14 Oct 2017, 14:03

Re: PostreSQL

Post by Hellfireson »

Фикс БД:

Code: Select all

psql -U postgres -c "ALTER DATABASE nextcloud REFRESH COLLATION VERSION;"
Post Reply