unix startup script for Code Collaborator server

Not applicable
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2010
05:30 AM
11-30-2010
05:30 AM
unix startup script for Code Collaborator server
Customers sometimes ask:
>Is there a unix startup script for Code Collaborator? Can we just make a symlink to $COLLAB/cccollab-server in /etc/init.d?
The answer is:
The symlink idea is good, but won't work because of the way our installer tries to find the rest of the software that's been installed.
Instead, put a script in /etc/init.d/ similar to this:
#!/bin/bash
COLLAB=/opt/ccollab_server
(cd $COLLAB ; ./ccollab-server "$@" )
Which will do about the same thing, but will also permit our installer to find itself correctly.
>Is there a unix startup script for Code Collaborator? Can we just make a symlink to $COLLAB/cccollab-server in /etc/init.d?
The answer is:
The symlink idea is good, but won't work because of the way our installer tries to find the rest of the software that's been installed.
Instead, put a script in /etc/init.d/ similar to this:
#!/bin/bash
COLLAB=/opt/ccollab_server
(cd $COLLAB ; ./ccollab-server "$@" )
Which will do about the same thing, but will also permit our installer to find itself correctly.
0 REPLIES 0
