How to build a test environment and try upgrade in SupportCenter Plus ?
-
When you are planning to upgrade SupportCenter Plus to the latest version, it is highly advisable to try the upgrade on the test environment first so that you will be confident about the upgrade on the Production server. Make sure the test setup is not accessible via the internet or not accessible to other tools so that the Mails will not be fetched or sent from this test set up.
You can use trimmed backup alone for trying the upgrades.
-
Steps to follow :
-
Step 1 : Stop Manage Engine SupportCenter service on the production server.
-
-
Once the backup is complete, a backup file with .data extension is placed in the Backup folder under the Supportcenter Plus\backup directory.
-
If it's an SQL database, just take the .bak file (SQL Backup) and restore it in a test SQL environment.
-
Step 3: Install Test SupportCenter Plus on the new test server. You can get related builds from our archives here. You should restore the database in the same build number always. You can know your Build number from the About page in the top right of the user interface.
- Step 4. Start and shut down the test application once.
-
- Dont start the test application, till the below queries are executed.
- As said above, Make sure this test system is out of your network, such that no new emails will be fetched or notifications will not be sent from this setup. Please execute the below queries such that it will work as a test setup.
-
The below steps are applicable for 8118 and lesser builds only.
-
- 1. Connect to the test database of your test set up.
- -- To Stop Outgoing mails
- update outgoingmailserver set HOSTNAME = 'ALPHA';
update outgoingmailserver set ALTERNATEHOSTNAME = 'BETA';
- -- To Stop Outgoing SMS
delete from Services where serviceid=(Select Serviceid from ServiceAction where serviceactionid=(select serviceactionid from smsconfig));
- -- To Disable Schedules (eg. mail fetching, schedule based integrations like analytics, custom schedules etc..)
update TASK_INPUT set OPERATIONAL_STATUS='4';
- -- To Disable all Custom Menus
UPDATE Menu_Actions SET ISENABLED='false';
- -- To Disable all Custom Triggers
UPDATE Auto_Actions SET ISENABLED='false';
- -- To Disable FAFRs with Action as Execute Script
- UPDATE RuleData SET ISENABLED = 'false' WHERE RULEID IN (SELECT rd.RULEID FROM RuleData rd LEFT JOIN RuleActionsMap ram on rd.RULEID = ram.RULEID LEFT JOIN RuleActionTypes rat on ram.RULEACTIONTYPEID = rat.RULEACTIONTYPEID WHERE rat.ACTIONNAME LIKE 'execute_script_action');
- -- To Disable Telephony Service
- Update TelephonyService set enableservice='false'; *.
- Once the above queries are executed in your test database
- Step 5: Start the SupportCenter Plus service and log in to it and check if everything looks fine.
- For any assistance, please contact our support at support@supportcenterplus.com
New to ADSelfService Plus?
Related Articles
How to upgrade SupportCenter Plus instance ?
Users who wants to upgrade the Supportcenter Plus instance needs to proceed with the following steps : Building a test environment is must while upgrading SupportCenter Plus. It is highly advisable to try the upgrade on the test environment first so ...
Steps to revert the environment from an upgrade failure situation ?
1. Rename the failed set up installation folder to <supportcenter_old> . Don't delete the installation folder until the process is completed. Download the existing version which you had before this upgrade from the below archives link. ...
How to restore the database of supportcenter plus in a new instance? (Applicable from 11.0 version)
1. Find out the build number of the live server. You can know it from About Product (inside ? icon)in the top right of the user interface. 2. Download the same version from the below link * http://archives.manageengine.com/support-center/ ...
11.0 Upgrade failure Inputs needed for analysis
To analyze Supportcenter plus upgrade failure cases (Upgrade from 8121 - to 11.0 version), we need following types of logs. 1) If upgrade itself got failed -> need SCP\server\default\log for analysis 2) After upgrade, if the product does not start, ...
solution for postgres 11 upgrade issues
When Supportcenter Plus is upgraded to 14300 or later, postgres is also upgraded to 11.17. If you are using bundled postgres, data migration through pgdump and restore mechanism also happens. To ensure efficiency in Postgres 11.17, make sure your ...