Appearance
install server for davinci resolve
Install Server for DaVinci Resolve
🛠️ Installation Steps:
- Download and run the installer.sh file:
bash
git clone https://github.com/ArduinoDenis/install-server-for-davinci-resolve.git && cd install-server-for-davinci-resolve/ && chmod 700 installer.sh && ./installer.sh- Add the following line to the postgresql-15 database configuration:
listen_addresses = '*'- Add the following lines to the role configuration in the pg_hba.conf database:
- First line under "# Database administrative login by Unix domain socket":
local all admin md5- Second line at the end of the "# replication privilege" column:
host all all 0.0.0.0/0 trust- Create the admin role with privileges - change the default admin password:
create role admin with login superuser createdb createrole inherit replication connection limit -1 password 'admin';- Change the password for the postgres user - change the default ubuntu password:
ALTER USER postgres PASSWORD 'ubuntu';- Exit the database:
bash
exit- Exit the user and wait for the installation to finish:
bash
exit- At some point, it will ask you to enter an email address, enter your email address to access the database.
- Create a password and confirm it by re-entering it on the next question.
- After a short time, it will ask if you want to create the pgadmin4 configuration, type y and press Enter.
- Type y and then Enter to restart pgadmin4.
- If everything went well, it will open the studio server page where it will ask you for how many days you want to have a database backup, so enter the number and press Enter.
- Press Enter if you do not want to receive advertising emails.
- Once the configuration is complete, it will show you this message "Congratulations, the installation is now complete!".
- Now configure the server for DaVinci Resolve:
bash
sudo studio --create {database name} {create your password}- View the databases:
bash
sudo studio --list- Delete the database:
bash
sudo studio --delete {database name}- Create an autobackup of the database:
bash
sudo studio --backup {database name}- View the database backups:
bash
sudo studio --backup-list {database name}- For more commands, refer to the official guide visit the website
- Note: http:// your-server-ip/pgadmin4/login username: the email you entered earlier password: your default ubuntu postgres password
- Congratulations, you have finished the configuration.
