Interstageのrcプロシジャ“/etc/rc2.d/S99startis”を編集します。以下の太字の行が、編集で追加する内容です。
![]()
#!/sbin/sh # Interstage Application Server # S99startis : Interstage Application Server start procedure . /opt/FJSVibs/etc/def/apfwrcsymfo.sh if [ -f /opt/FSUNtd/etc/.corba_use ]; then OD_HOME=/opt/FSUNod export OD_HOME fi ~~~~~~~~~~~~~~~ 省略 ~~~~~~~~~~~~~~~ |
![]()
#!/bin/sh # chkconfig: 2345 99 00 # description: Interstage Application Server # Interstage Application Server # startis : Interstage Application Server start procedure ########################################################################## # If you want to run Interstage Application Server on other locale # environments such as English, please customize the default locale # setting. ########################################################################## . /etc/sysconfig/i18n export LANG . /opt/FJSVibs/etc/def/apfwrcsymfo.sh if [ -f /opt/FJSVtd/etc/.corba_use ]; then OD_HOME=/opt/FJSVod export OD_HOME fi ~~~~~~~~~~~~~~~ 省略 ~~~~~~~~~~~~~~~ |