-
Technical Assistance
Request product support from SAP
-
Non-Technical Assistance
Request non-product support or provide feedback on SAP Support Portal site
Technical Assistance
Request product support from SAP
Non-Technical Assistance
Request non-product support or provide feedback on SAP Support Portal site
This page summarizes hints on upgrading the Introscope Enterprise Manager (EM). The focus is to run the upgrade in a way to minimize the effort on SAP Solution Manager side.
Traps
With SAP Solution Manager 7.2 you can install the EM into the same folder (after removing the old installation in that folder) or into a new folder. In any case the procedure will be the same:
DO NOT copy the contents of folder sap/plugins. This might cause versioning conflicts. If you copy the complete sap/ folder of your EM installation then make sure to delete the sub folder sap/plugins. It will be re-generated with current plugin versions after restarting the Enterprise Manager.
This is an example script fragment illustrating the steps to be executed on Linux to perform the upgrade. It is provided to describe the upgrade activities on code level. It should be considered as pseudo-code and will not work out of the box in your environment. SAP does not provide any support for this script. Input for enhancements is welcome, though - just submit a support ticket.
This script should be considered as pseudo-code and will not work out of the box in your environment, for example:
su - myaccountforrunning Introscope
# Stop EM
cd /usr/sap/ccms/apmintroscope/bin
./EMCtrl.sh stop
# move to backup
cd /usr/sap/ccms
mv apmintroscope apmintroscope_old
# perform the new installation
mkdir /usr/sap/ccms/inst_EM
cd /usr/sap/ccms/inst_EM
unzip WILYISEM00P_x-*.ZIP
# Edit the ca-eula.txt to accept the license:
# 1. Open the file “ca-eula.txt” in a text editor
# 2. Scroll down to the end of the file
# 3. Accept the terms by setting "CA-EULA=accept" and save the file
chmod +x introscope10.7.0.307linuxAMD64SAP.bin
./introscope10.7.0.307linuxAMD64SAP.bin
# extract management modules on top
cd /usr/sap/ccms/apmintroscope
unzip -o WILYISMM00P_8-70005232.ZIP
# transfer files from old installation
mkdir data
cp -R /usr/sap/ccms/apmintroscope_old/data /usr/sap/ccms/apmintroscope/data
mkdir traces
cp -R /usr/sap/ccms/apmintroscope_old/traces /usr/sap/ccms/apmintroscope/traces
# dangerous: copying files instead of manually merging changes may lead to ERRORs
#cp -f /usr/sap/ccms/apmintroscope_old/Introscope_Enterprise_Manager.lax /usr/sap/ccms/apmintroscope/Introscope_Enterprise_Manager.lax
# cp /usr/sap/ccms/apmintroscope_old/config/users.xml /usr/sap/ccms/apmintroscope/config/users.xml
# cp /usr/sap/ccms/apmintroscope_old/config/users-sap.xml /usr/sap/ccms/apmintroscope/config/users-sap.xml
# cp /usr/sap/ccms/apmintroscope_old/config/domains.xml /usr/sap/ccms/apmintroscope/config/domains.xml
# cp /usr/sap/ccms/apmintroscope_old/config/loadbalancing.xml /usr/sap/ccms/apmintroscope/config/loadbalancing.xml
# cp /usr/sap/ccms/apmintroscope_old/config/apm-events-thresholds-config.xml /usr/sap/ccms/apmintroscope/config/apm-events-thresholds-config.xml
# cp /usr/sap/ccms/apmintroscope_old/config/agentclusters.xml /usr/sap/ccms/apmintroscope/config/agentclusters.xml
# cp /usr/sap/ccms/apmintroscope_old/config/em-jetty-config.xml /usr/sap/ccms/apmintroscope/config/em-jetty-config.xml
# cp /usr/sap/ccms/apmintroscope_old/sap/*.e2emai.properties /usr/sap/ccms/apmintroscope/sap/
# Compare and copy: /usr/sap/ccms/apmintroscope/config/modules
# start new EM
cd /usr/sap/ccms/apmintroscope/bin
./EMCtrl.sh start