DeployStudioServer Daemon

Revised: 2009-06-24 richard

This process shares the repository’s databases to client applications like DeployStudio Admin and Runtime. This daemon also manages Runtime’s multicast restoration requests by controlling ASR server instances.

By default it is installed here....

/Applications/Utilities/DeployStudio Admin.app/Contents/MacOS/DeployStudioServer

And started with a launchd user daemon located here...

/Library/LaunchDaemons/com.deploystudio.server.plist

And here is an example of the launchd plist file...

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>com.deploystudio.server</string>
    <key>OnDemand</key>
    <false/>
    <key>Program</key>
    <string>/Applications/Utilities/DeployStudio Admin.app/Contents/MacOS/DeployStudioServer</string>
    <key>ProgramArguments</key>
    <array>
        <string>/Applications/Utilities/DeployStudio Admin.app/Contents/MacOS/DeployStudioServer</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
</dict>
</plist>