|
楼主 |
发表于 2004-3-6 18:11:33
|
显示全部楼层
也可能是这些改动的原因:
我照说明来做的。
Running the License Server
After installing your license, you will need to start a license server daemon on the license server host. The license server daemon can be manually started on a host by using the shell script /opt/pixar/license-version/startlm.sh. The script may be invoked interactively by any user or from the system startup. The license manager needs no special privileges to run.
In order to have the license server be started automatically, you may want to install an rc.d script. For example:
#!/bin/sh
# Start the license manager
case "$1" in
'start')
( cd /opt/pixar/license-1.0 ; ./startlm.sh) > /dev/null 2>&1
;;
'stop')
( cd /opt/pixar/license-1.0 ; ./stoplm.sh) > /dev/null 2>&1
;;
*)
echo "usage: $0 {start|stop}"
;;
esac
can be placed into the directory /etc/rc2.d and renamed to S99startlm.
Running the Alfred Maitre-d
If you have decided to run an Alfred Maitre-d, and you have already configured alfred.ini (see the above section on Alfred), you will need to ensure that the maitre-d machine is running the alfred maitre-d before running the alfred UI or dispatcher on other machines.
The alfred maitre-d is started by running alfred with the -maitre_d flag. The alfred executable is located by default in /opt/pixar/rat-version/bin. It should not be run as root, since it does not require special permissions.
In order to have the license server be started automatically, you may want to install an rc.d script. For example:
#!/bin/sh
# Start the license manager
case "$1" in
'start')
( cd /opt/pixar/rat-5.0/bin ; ./alfred -maitre_d) > /dev/null 2>&1
;;
'stop')
( cd /opt/pixar/rat-5.0/bin ; ./alfred -maitre_d) > /dev/null 2>&1
;;
*)
echo "usage: $0 {start|stop}"
;;
esac
can be placed into the directory /etc/rc2.d and renamed to S99maitred.
那个改动是问题的关键呢?
应该怎么恢复呢?我没软驱。 |
|