Introduction
The Batch Installer solution is available for the installation and update of the JobScheduler Universal Agent. It allows installation of any number of Agents on multiple servers across a range of environments.
Article Scope
A general description of the installation of the JobScheduler Universal Agent can be found in the JobScheduler Universal Agent - Installation & Operation article.
In addition, a number of "How to ..." articles are available describing the use of the Batch Installer in different environments. These are linked from the JobScheduler Universal Agent - Batch Installation and Update of Agents article.
This article contains reference information for users seeking more detailed information than provided in the batch installation in different environments articles.
Feature Availability
FEATURE AVAILABILITY STARTING FROM RELEASE 1.10
The JobScheduler Universal Agent Batch Installer is available with - JITL-214Getting issue details... STATUS
Universal Agent Batch Installer Components
The Batch Installer is operated by a JobScheduler Master that:
- connects to the Servers that the Agents are to be installed on and
- executes the required Agent installations.
The Batch Installer application has two main components:
- a JobScheduler
AgentBatchInstaller
job and - a JobScheduler
universal_agent_installer
job chain.
In addition, two XML files are needed for the application:
batch_installer_config_file.xml
andyade_agent_batch_installer_settings.xml
The AgentBatchInstaller
job is responsible for creating the JobScheduler orders for the job chain. Each of these orders is named according to the pattern <host>:<port>
to convey the host and port of the server where each Agent is to be installed.
The Universal Agent Batch Installer Job Chain
The universal_agent_installer
job chain has four job nodes configured in series as shown in the code block and diagram below:
Job Chain: universal_agent_installer.job_chain.xml
<job_chain name="universal_agent_installer"> <job_chain_node state="CheckPreRequisite" job="CheckPreRequisite" next_state="Sync" error_state="error"/> <job_chain_node state="Sync" job="Sync" next_state="TransferInstallationSetup" error_state="error"/> <job_chain_node state="TransferInstallationSetup" job="TransferInstallationSetup" next_state="PerformInstall" error_state="error"/> <job_chain_node state="PerformInstall" job="PerformInstall" next_state="success" error_state="error" on_error="suspend"/> <job_chain_node state="success"/> <job_chain_node state="error"/> </job_chain>
The individual nodes in the job chain have the following functions:
CheckPreRequisite
- Check for the correct Java version
- Check whether a JobScheduler Universal Agent already has been installed.
- If yes, then the Installer:
- shuts down any instances that are possibly running
- removes the installation
- If yes, then the Installer:
Sync:
Wait until all prerequisites have been checked and all instances shut down.TransferInstallationSetup
: Transfer the installer files to the host- Before the transfer starts, the preprocessor will create the instance start script from the template
jobscheduler_agent_instance_script.txt
The files that are to be transfered are specified with the <globals><transfer><file_spec=".*\.(sh|gz)$"> configuration element
- This regular expression causes the following files to be transfered:
- the JobScheduler Universal Agent installer files:
jobscheduler_unix_universal_agent.<version>.tar.gz
- the instance start script:
jobscheduler_agent_<port>.sh
- the installation script:
jobscheduler_universal_agent_install.sh
- the JobScheduler Universal Agent installer files:
- This regular expression causes the following files to be transfered:
- Before the transfer starts, the preprocessor will create the instance start script from the template
PerformInstall
: Start the installation using SSH.- The step before transfered installation script will be executed
- The installation script installs and starts the JobScheduler Universal Agent
- Finally the post-processing commands will be executed
- The post-processing commands are specified with the
<installation><postprocessing><command> element
- Three commands will be executed
- if you require additional commands, please add the call in the
PerformInstall
job
- if you require additional commands, please add the call in the
- The default commands set up the autostart for JobScheduler Universal Agent on a Linux server (Ubuntu distribution)
echo ${ssh.sudo_password} | sudo -S cp ${install_path}/bin/jobscheduler_agent.sh /etc/init.d/jobscheduler
echo ${ssh.sudo_password} | sudo -S update-rc.d jobscheduler defaults
- The post-processing commands are specified with the
Job Parameters
All jobs have access to the following parameters. These parameters are used for the JobScheduler Universal Agent instance start script.
Parameter | Description | XML |
---|---|---|
<job chain>_required_orders | The number of orders that have been created where job_chain is the value of the parameter installation_job_chain in the job AgentBatchInstaller | |
agent_options.scheduler_ip_address | The IP address of the JobScheduler Universal Agents host. If no value is specified, the value from the paramter host in the ssh section will be used. | installation/agent_options/scheduler_ip_address |
agent_options.scheduler_http_port | The port of the JobScheduler Universal Agent. Default=4445 | installation/agent_options/scheduler_http_port |
agent_options.java_home | installation/agent_options/java_home | |
agent_options.java_options | installation/agent_options/java_options | |
agent_options.scheduler_home | will be set to | Not available in XML |
agent_options.scheduler_user | installation/agent_options/scheduler_user | |
agent_options.scheduler_log_dir | installation/agent_options/scheduler_log_dir | |
agent_options.scheduler_kill_script | installation/agent_options/scheduler_kill_script | |
agent_options.scheduler_pid_file_dir | installation/agent_options/scheduler_pid_file_dir | |
host | The SSH IP address of the JobScheduler Universal Agents host | installation/ssh/host |
port | The SSH port of the JobScheduler Universal Agent | installation/ssh/port |
user | The SSH user of the JobScheduler Universal Agent | installation/ssh/user |
auth_method | The SSH authentication method of the JobScheduler Universal Agent | installation/ssh/auth_method |
auth_file | The SSH authentication file of the JobScheduler Universal Agent | installation/ssh/auth_file |
password | The password for the SSH user | installation/ssh/password |
sudo_password | The sudo password for the SSH user | installation/ssh/sudo_password |
install_path | The folder to which the JobScheduler Universal Agent will be installed | installation/install_path |
Job: TransferInstallationSetup
This job uses the YADE JITL job to transfer the installer files to the host.
More detailed explanations of the parameters are available with the YADE - Documentation.
It is recommended that the YADE settings file is specified with the <globals>
element and that the default profile name <host>:<port>
is used. The <installation><transfer>
element is not then required for the installer configuration file.
Parameter | Description | XML |
---|---|---|
settings | the file with the profiles, one for each JobScheduler Universal Agent | installation/transfer/settings |
profile | the name of the profile for the current installation. Default=<host>:<port> | installation/transfer/profile |
file_spec | a regular expression that defines the set of files that should be transfered | installation/transfer/file_spec |
target_host | the host to which the files should be transfered | installation/transfer/target/host |
target_port | the port according to the given protocol, e.g. 21 for the FTP protocol | installation/transfer/target/port |
target_protocol | the protocol with which the installation files will be transfered (FTP, SFTP, file, local) | installation/transfer/target/protocol |
target_user | the user (if required by the protocol) with which the installation files will be transfered | installation/transfer/target/user |
target_password | the password (if required by the protocol) with which the installation files will be transfered | installation/transfer/target/password |
target_dir | the location that the files will be copied to | installation/transfer/target/dir |
target_ssh_auth_method | the authentication method should the SSH protocol be used | installation/transfer/target/auth_method |
target_ssh_auth_file | the authentication file should the the SSH protocol be used and the target_ssh_auth_method parameter be used with the value publickey | installation/transfer/target/auth_file |
source_host | the host from which the installation files should be transfered | installation/transfer/source/host |
source_port | the port according to the given protocol (e.g. 21 when protocol is ftp) | installation/transfer/source/port |
source | the protocol with which the source will be transferred (ftp, sftp, file, local) | installation/transfer/source/protocol |
source_user | the user (if the protocol needs one) with which the source will be transferred | installation/transfer/source/user |
source_password | the password (if the protocol needs one) with which the source will be transferred | installation/transfer/source/password |
source_dir | the location from where the files will be copied | installation/transfer/source/dir |
source_ssh_auth_method | the authentication method if the protocol is ssh. | installation/transfer/source/auth_method |
source_ssh_auth_file | the authentication file if the protocol is ssh and auth_method is publickey | installation/transfer/source/auth_file |
Job: PerformInstall
More detailed explanations of the parameters are available with the JITL SSH job documentation
Parameter | Description | XML |
---|---|---|
command_n | n = 0... The commands for the post-processing, e.g. enabling the autostart of the Universal Agent | installation/postprocessing/command |
command_counter | The number of commands specified |
Starting the update/installation
The update/installation procedure is started by running the AgentBatchInstaller
job, which is described in the next section.
The AgentBatchInstaller
Job
The job AgentBatchInstaller
reads the installer configuration file and creates orders for each element <installation>
.
The element <installation>
defines the source and the target of the installer files, the port for the JobScheduler Universal Agent and the SSH connection parameters. Please note:
- You can define defaults for all elements in the <
globals>
element. - You can use variables for values e.g.
${ssh.host}
. - It is recommended that you specify the name of the YADE settings file in the <
globals>
element and use the default profile name as shown in the example Configuration File below. This will mean that it is not necessary to define<installation><transfer>
elements.
Parameters for the AgentBatchInstaller
Job
Parameter | Description | Example |
---|---|---|
installation_definition_file | The XML file that contains all parameters for the batch installation | c:\batch\batchinstall.xml |
filter_install_host | A host name if only one order should be created that matches the given host | myAgent |
filter_install_port | A port if only one order should be created that matches the given host |
|
installation_job_chain | The name of the job chain for which the orders should be created | /batch_install_universal_agent/universal_agent_installer |
update | If true then an order for all If false then an order for | true |
Customizing the Installation Process
The installation process can be customized as follows.
- The scripts in the
CheckPreRequisite
andPerformInstall
SSH jobs can be modified.- Use this if you want to check other prerequisites or execute additional commands either before or after the installation.
- The
jobscheduler_universal_agent_install.sh
installation script can be modified. - The template for the
jobscheduler_agent_instance_script.txt
start script for the Agent instances can be modified.
Checking Prerequisites
The CheckPreRequisite
job will check the Java version, shut down any JobScheduler Universal Agent that may be running and remove the lib
folder from an existing installation.
Performing the Installation
The PerformInstall
job calls the installation script and executes the commands specified with the <postprocessing>
element.
The Installation Script
The installation script will unzip the Agent installation file and start the JobScheduler Universal Agent.
The Installer Configuration File
The installer configuration file contains an <installation>
element for each JobScheduler Universal Agent instance.
The following code block shows a minimal example for the installer configuration file:
<?xml version="1.0" encoding="utf-8"?> <installations lastRun="2015-11-06 15:11"> <globals> <transfer> <settings><![CDATA[C:\Temp\batch_install\yade_agent_batch_installer_settings.ini]]></settings> </transfer> </globals> <installation lastRun="2015-11-06 15:11"> <install_path><![CDATA[/home/test/temp/xxx]]></install_path> <agent_options> <scheduler_http_port>4445</scheduler_http_port> <scheduler_ip_address><![CDATA[192.11.0.116]]></scheduler_ip_address> </agent_options> <ssh> <user><![CDATA[test]]></user> <password><![CDATA[12345]]></password> <sudo_password><![CDATA[12345]]></sudo_password> <auth_method><![CDATA[password]]></auth_method> <port><![CDATA[22]]></port> </ssh> <postprocessing> <command><![CDATA[echo ${ssh.sudo_password} | sudo -S cp ${install_path}/bin/jobscheduler_agent.sh /etc/init.d/jobscheduler]]></command> <command><![CDATA[echo ${ssh.sudo_password} | sudo -S update-rc.d jobscheduler defaults]]></command> </postprocessing> </installation> </installations>
The <globals>
element is used to specify values that are used for all installation items. The items that are specific for an individual installation will overwrite the global values. An installation item is required for each Agent. You can use substitution in the values of the elements.
<command>echo ${ssh.sudo_password} | sudo cp ${install_path}/bin/jobscheduler_agent.sh /etc/init.d/jobscheduler</command>
Using the XML Editor to Configure Files
Configuring complex XML files with a text editor is often a tedious and error-prone procedure. To get around this, we recommend that you use our XML Editor to manage the configuration files required for the Batch Installer. The XML Editor automatically validates configuration files and therefore reduces the possibility of configuration errors.
Find more details from our XML Editor article.
- After downloading the XML Editor, extract the zip file, then start the "
sos.xml.editor.exe
" file. (The XML Editor runs on Windows systems and does not need to be installed.) - Open your installer configuration file in the Editor and assign the XSD
scheduler_universal_agent_installations.xsd
schema.
Managing the YADE file transfer profiles
Each installation makes use of a profile in the YADE settings file. The default profile name is <host>:<port>
where:
<host>
is substituted with the value from the element<installation><agent_option><scheduler_ip_address>
and<port>
is substituted with the value from the element<installation><agent_option><scheduler_http_port>
- Specify the name of the YADE settings file with the
<globals><settings>
element. - Open the YADE settings file or create a new one.
- Assign the XSD Schema http://www.sos-berlin.com/schema/yade/YADE_configuration_v1.0.xsd
- Add a
<ProtocolFragments>
element and nodes for each host that you want to install the JobScheduler Universal Agent for. - Add a
<Profile>
element and nodes for each host you want install the JobScheduler Universal Agent for. - The default
profile_id
is<host>:<port>
. If you do not use the default then you have to specify the profile name in the installer configuration file.
Change Management References - Batch Installation