Hi, I've read the docs and looked at the tutorial here.
Up to now I was using the portable install on my windows laptop and everything worked.
I've setup a development and production server on debian 12 with dedicated postgres 15 databases. Was trying to see how the integrated backups work but I'm just getting error:
2023-08-30 03:05:28 backup could not execute job 'monthly', exit status 1
2023-08-30 03:05:28 scheduler task 'Integrated full backups' failed to execute, exit status 1
My database setup in config.json has a different database name to username, the default I see they're both 'app' should I have kept the same name?
"db": {
"host": "localhost",
"port": 5432,
"name": "app",
"user": "rei3dbusr",
"pass": "<<snipped>>",
"embedded": false,
"ssl": false,
"sslSkipVerify": false
},
Manually executing the pg_dump command from the tutorial I have to add my database name separately to get it to work manually.