Forum OpenACS Q&A: How to move openacs installation from one machine to another

Hi there,
I need to move my openacs installation from one machine to another. Can somebdy outline the steps  or point me to right documentation

Thanks
Himanshu

Himanshu,

The quick and dirty way of doing that is to dump your database on server A, then import that dump into Postgresql on server B.

On server A:
$ pg_dump openacs > dump.sql

On server B:
$ createdb openacs
$ psql openacs < dump.sql

Finally copy your openacs server directory from server A to server B.  Start up aolserver, and that should do it.

- Nick.