How to convert SQLite database to PostgreSQL on Nextcloud. I did on the previous video install Nextcloud and configure with PostgreSQL, here is how to set Nextcloud to use PostgreSQL.
Support channel: https://www.youtube.com/c/HeikkiKoivi...
Commands:
sudo -u www-data php occ db:convert-type --all-apps pgsql username 127.0.0.1 nexcloud
postgresql commands:
sudo -u postgresql psql
create database nextcloud template template0 encoding 'unicode';
alter databse nextcloud owner to username;
grant all privileges on database nextcloud to username;
#Nextcloud #Postgresql #homeserver