Page 1 of 1

PostreSQL

Posted: 14 Jul 2025, 22:11
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

Re: PostreSQL

Posted: 15 Jul 2025, 21:01
by Hellfireson
Фикс БД:

Code: Select all

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