-
Auto/Cloud backup for database & remote grading
Hi,
Is there a way to host/have the Resolve database files in a Dropbox folder (on the host/colourist computer)?
This would be a nice way to automatically backup the database and provide free/cheap redundancy via ‘cloud’ storage (as Dropbox folders sync whenever there is a change to files)
Also can projects be extracted from the database (as individual tgz files)?
I’m hoping to use remote grading more and more (I have a suite at home and a suite in Soho), so it would be nice to share the database to avoing going project.tgz crazy with every exchange back and forth. Maybe I’ve missed something and there’s another way!? (-;
EDIT: I’ve just found this, is this the best method?;
‘by Jed Smith on Oct 11, 2011 at 2:01:35 am
DaVinci Resolve installs the PostgreSQL database server. By default the permissions of the server settings disable access by any non local loopback ip addresses. That is, anything that’s not 127.0.0.1.
To enable a range of IP addresses to connect to the database server, you have to explicitly enable them in the configuration file, which for Macs is located here:
/Library/PostgreSQL/8.4/data/pg_hba.confNote that this folder is not readable by normal users. You will have to use Terminal and sudo into the folder, and edit the pg_hba.conf file, and then restart the server using the utilities in this folder:
/Applications/PostgreSQL 8.4/For example, this line will enable all IP addresses in the range 192.168.1.0-255:
host all all 192.168.1.0/24 md5Not sure why this isn’t mentioned anywhere in the Documentation! Hope this helps.’
Thanks!