install server for davinci resolve

Install Server for DaVinci Resolve

🛠️ Installation Steps:

  1. Download and run the installer.sh file:

git clone https://github.com/ArduinoDenis/install-server-for-davinci-resolve.git && cd install-server-for-davinci-resolve/ && chmod 700 installer.sh && ./installer.sh
  1. Add the following line to the postgresql-15 database configuration:

listen_addresses = '*'
  1. 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
  1. 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';
  1. Change the password for the postgres user - change the default ubuntu password:

ALTER USER postgres PASSWORD 'ubuntu';
  1. Exit the database:

exit
  1. Exit the user and wait for the installation to finish:

  1. At some point, it will ask you to enter an email address, enter your email address to access the database.

  2. Create a password and confirm it by re-entering it on the next question.

  3. After a short time, it will ask if you want to create the pgadmin4 configuration, type y and press Enter.

  4. Type y and then Enter to restart pgadmin4.

  5. 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.

  6. Press Enter if you do not want to receive advertising emails.

  7. Once the configuration is complete, it will show you this message "Congratulations, the installation is now complete!".

  8. Now configure the server for DaVinci Resolve:

  1. View the databases:

  1. Delete the database:

  1. Create an autobackup of the database:

  1. View the database backups:

  1. For more commands, refer to the official guide visit the websitearrow-up-right

  2. Note: http:// your-server-ip/pgadmin4/login username: the email you entered earlier password: your default ubuntu postgres password

  3. Congratulations, you have finished the configuration.

Last updated