JMXサービスのrcプロシジャ“/etc/rc2.d/S95isjmxstart”を編集します。以下の太字の行が、編集で追加する内容です。

#!/bin/sh
#
# Copyright All Right Reserved
# Copyright (c) FUJITSU LIMITED 2003
#
# Interstage JMX Service start/stop procedure
. /opt/FJSVibs/etc/def/apfwrcsymfo.sh
if [ ! -d /usr/bin ]
then
# have to have /usr mounted
exit 1
fi
~~~~~~~~~~~~~~~
省略
~~~~~~~~~~~~~~~
|

#!/bin/sh
#
# Copyright All Right Reserved
# Copyright (c) FUJITSU LIMITED 2003
#
# chkconfig: 2345 95 05
# description: Interstage JMX Service start/stop procedure
# processname: isjmxstart
#
##########################################################################
# 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
##########################################################################
# Please don't modify below.
##########################################################################
if [ ! -d /usr/bin ]
then
# have to have /usr mounted
exit 1
fi
~~~~~~~~~~~~~~~
省略
~~~~~~~~~~~~~~~
|