Network Deployment (Distributed operating systems), v8.0 > Administer applications and their environment > Administer Scheduler service > Install default scheduler calendars


Install default scheduler calendars


The default scheduler SIMPLE and CRON calendars are available in the SchedulerCalendars.ear system application and are automatically installed on standalone server profiles. System applications cannot be installed and uninstalled like traditional Java EE applications.

  1. Start wsadmin.sh and connect to the dmgr.

  2. Install the system application.

    • To install on a non-clustered server:

      • Use Jacl:
        $AdminApp install "/${WAS_INSTALL_ROOT}/systemApps/SchedulerCalendars.ear"
        {
            -systemApp
            -appname SchedulerCalendars
            -cell mycell
            -node mynode
            -server myserver
        }
        

      • Use Jython list:
        AdminApp.install
        (
            '${WAS_INSTALL_ROOT}/systemApps/SchedulerCalendars.ear',
            [
                '-systemApp',
                '-appname', 'SchedulerCalendars',
                '-cell', 'mycell',
                '-node', 'mynode',
                '-server', 'myserver'
            ]
        )
        

      • Jython string:
        AdminApp.install
        (
            '${WAS_INSTALL_ROOT}/systemApps/SchedulerCalendars.ear',
            '[-systemApp -appname SchedulerCalendars -cell mycell -node mynode -server myserver]'
        )
        

    • To install on a cluster:

      • Use Jacl:
        $AdminApp install "\${WAS_INSTALL_ROOT}/systemApps/SchedulerCalendars.ear"
        {
            -systemApp
            -appname SchedulerCalendars
            -cell mycell
            -cluster mycluster
        }
        

      • Use Jython list:
        AdminApp.install
        (
            '${WAS_INSTALL_ROOT}/systemApps/SchedulerCalendars.ear',
            [
                '-systemApp',
                '-appname', 'SchedulerCalendars',
                '-cell', 'mycell',
                '-cluster', 'mycluster'
            ]
        )
        

      • Jython string:
        AdminApp.install
        (
            '${WAS_INSTALL_ROOT}/systemApps/SchedulerCalendars.ear',
            '[-systemApp –appname SchedulerCalendars –cell mycell -cluster mycluster]')
        

  3. Save the configuration changes.

  4. Synchronize the node.


Related


Uninstall default scheduler calendars
Scheduler calendars
Scheduler daemon
Example: Using default scheduler calendars
Manage schedulers
Scheduling tasks
Start the wsadmin scripting client using wsadmin.sh
Saving configuration changes with wsadmin.sh
Synchronize nodes using wsadmin.sh


Related


Interoperating with schedulers
Install the WebSphere SchedulerCalendars application on federated, version 6 nodes

+

Search Tips   |   Advanced Search