Openproject: Some important additional configurations

2023-04-25T11:02:05+00:00November 29, 2019|Cloud|0 Comments

|
| ByWinsurtech

1. Database migration from ec2 to RDS Backup and restore DB # pg_dump -Fc -v -h [instance endpoint] -U [master_username] [database] > [database].dump createdb [new database name] # pg_restore -v -h [instance endpoint] -U [master_username] -d [new database name] [database].dump In below file changes required [...]