デフォルトのスケジューラーの SIMPLE カレンダーおよび CRON カレンダーは、SchedulerCalendars.ear システム・アプリケーションにあり、スタンドアロンのサーバー・プロファイルに基づいて自動的にインストールされます。システム・アプリケーションは、従来の J2EE アプリケーションのようにインストールおよびアンインストールすることはできません。
このタスクについて
ネットワーク・デプロイメント環境においては、サーバーまたはクラスター上の SchedulerCalendars.ear システム・アプリケーションをマップするためには、以下のステップが必要です。
プロシージャー
- wsadmin ツールを開始して、デプロイメント・マネージャーに接続します。
詳しくは、wsadmin スクリプト・クライアントの開始
のトピックを参照してください。
- システム・アプリケーションをインストールします。
- クラスター化されていないサーバーにインストールするには、以下のようにします。
- Jacl を使用:
$AdminApp install
"¥${WAS_INSTALL_ROOT}/systemApps/SchedulerCalendars.
ear" {-systemApp -appname SchedulerCalendars -cell
mycell -node mynode -server myserver}
- Jython リストを使用:
AdminApp.install('${WAS_INSTALL_ROOT}/systemApps/
SchedulerCalendars.ear', ['-systemApp', '–appName',
'SchedulerCalendars','-cell', 'mycell', '-node',
'mynode', '-server', 'myserver'])
- Jython ストリングを使用:
AdminApp.install('${WAS_INSTALL_ROOT}/systemApps/
SchedulerCalendars.ear', '[-systemApp –appName
SchedulerCalendars –cellmycell –node mynode
-server myserver]')
各部の意味は、次のとおりです。
値 |
オプション |
mycell |
cell オプションの値です。 |
mynode |
node オプションの値です。 |
myserver |
サーバー・オプションの値です。 |
- クラスターにインストールするには、以下のようにします。
- Jacl を使用:
$AdminApp install
"¥${WAS_INSTALL_ROOT}/systemApps/SchedulerCalendars.
ear" {-systemApp -appname SchedulerCalendars -cell
mycell -cluster mycluster}
- Jython リストを使用:
AdminApp.install('${WAS_INSTALL_ROOT}/systemApps/
SchedulerCalendars.ear', ['-systemApp', '–appName',
'SchedulerCalendars','-cell', 'mycell', '-cluster',
'mycluster'])
- Jython ストリングを使用:
AdminApp.install('${WAS_INSTALL_ROOT}/systemApps/
SchedulerCalendars.ear', '[-systemApp –appName
SchedulerCalendars –cell mycell -cluster mycluster]')
各部の意味は、次のとおりです。
値 |
オプション |
mycell |
cell オプションの値です。 |
mycluster |
cluster オプションの値です。 |
- 構成の変更を保管します。 詳しくは、wsadmin ツールによる構成変更の保管
のトピックを参照してください。