


To start AcuConnect on a UNIX server with an unrestricted user license:
1. Log on as the DEFAULT_USER.
2. Use the "su" command to gain root or superuser privileges.
3. Once you have root or superuser privileges, issue the "acuconnect -start" command using any of the optional arguments discussed in section A.2 "acuconnect" Command Formats.
acuconnect is already running on hostname
A new acuconnect process will not be started. If you want to start AcuConnect with new options, you must stop and restart acuconnect.
To start acuconnect whenever the server boots, add the "acuconnect -start" command to the system boot file. Your entry might be similar to the following:
In C Shell:
#
# If the acuconnect executable is present,
# start acuconnect
if -f /acucobol/acuconnect then
echo Starting acuconnect > /dev/console
/acucobol/acuconnect -start \
-e /acucobol/acuconnect.log
endif
In Bourne Shell:
# # If the acuconnect executable is present, # start acuconnect if (test -f /acucobol/acuconnect) then echo Starting acuconnect > /dev/console /acucobol/acuconnect -start \ -e /acucobol/acuconnect.log fi