They now reside in separate databases (my guess is this is to make each service fully independant of each other). Thankfully they can still be backed up using PG_DUMP and PG_DUMPALL.
As of Server v3, you can use the following commands to connect to the relevant unix socket paths and perform backups either as pgdump files that can be restored using pg_restore or as raw sql files (not sure why you would want the raw sql but hey ho), anyway here's the how to...
Don't forget to sudo or run as root...
Backup Calendar Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Mavericks Calendar Backup | |
#Dump whole Calendar DB as pgdump file suitable for use with PG_RESTORE | |
/Applications/Server.app/Contents/ServerRoot/usr/bin/pg_dumpall -h /var/run/caldavd/PostgresSocket/ -U caldav -c -f $TARGETFOLDER.0/caldav_dumpall.pgdump | |
#Dump Calendar table only as pgdump file suitable for use with PG_RESTORE | |
/Applications/Server.app/Contents/ServerRoot/usr/bin/pg_dump -h /var/run/caldavd/PostgresSocket/ -U caldav caldav -c -f $TARGETFOLDER.0/caldav.sql | |
#Dump Calendar table only as sql file. | |
/Applications/Server.app/Contents/ServerRoot/usr/bin/pg_dump -h /var/run/caldavd/PostgresSocket/ -U caldav caldav -Fc -f $TARGETFOLDER.0/caldav.pgdump |
Backup Profile Manager
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Mavericks Profile Manager Backup | |
#Dump whole devicemgr DB as pgdump file suitable for use with PG_RESTORE | |
/Applications/Server.app/Contents/ServerRoot/usr/bin/pg_dumpall -h /Library/Server/ProfileManager/Config/var/PostgreSQL/ -U _devicemgr -c -f $TARGETFOLDER.0/profilemanager_dumpall.pgdump | |
#Dump devicemgr table only as pgdump file suitable for use with PG_RESTORE | |
/Applications/Server.app/Contents/ServerRoot/usr/bin/pg_dump -h /Library/Server/ProfileManager/Config/var/PostgreSQL/ -U _devicemgr devicemgr_v2m0 -c -f $TARGETFOLDER.0/profilemanager.sql | |
#Dump devicemgr table only as sql file. | |
/Applications/Server.app/Contents/ServerRoot/usr/bin/pg_dump -h /Library/Server/ProfileManager/Config/var/PostgreSQL/ -U _devicemgr devicemgr_v2m0 -Fc -f $TARGETFOLDER.0/profilemanager.pgdump |
Good luck!
This is perfect! But how do I restore the backup on mavericks server? Sorry I am new to this?
ReplyDelete