How to remove the ServiceDeskPlus details in OpManager?

How to remove the ServiceDeskPlus details in OpManager?

ISSUE: To remove the ServiceDeskPlus details in the Add-On settings page and from the device snapshot page.
SOLUTION:
We need to delete entries in the three tables in the database.
1. Connect to the database using this command,
C:\\..\\OpManager\\mysql\\bin>mysql -u root -P 13306 OpManagerDB
Please Note: If some other parameter is deleted, OpManager will not work properly. Delete the entries in database after checking it carefully.
2. Execute the following commands to delete the database entries,
a. select * from feed_login_params;
get the LOGIN_ID from the above command output in the 2nd row. It will look like this,
LOGIN_ID: 1087719270
PRODUCT_NAME: ServiceDeskPlus
b. delete from feed_login_params where LOGIN_ID=<the id from the above query>;
c. select * from feed_url;
get the FEED_ID from the above command output in the 2nd row. It will look like this,
FEED_ID: 411118580
d. delete from feed_url where FEED_ID=<the id from the above query>;
e. select * from servicedesk_config;
f. delete from servicedesk_config where TO_EMAIL like "%<email id without the domain name>%";
After this restart OpManager.

                  New to ADSelfService Plus?

                    • Related Articles

                    • Vulnerabilities in OpManager 12.0

                      VULNERABILITY DETAILS(found in build 12000) Vulnerability 1: Unrestricted File Upload:  OpManager fails to validate or improperly validates files before uploading to the system. As a result an attacker might be able to upload arbitrary JSP file and ...
                    • Changing OpManager User Password

                      OpManager's user management feature helps network admins create specific user roles and associate them with the respective user profiles. You can also change their passwords. Kindly note that only an admin user or a user with full control privilege ...
                    • Create New Users in OpManager

                      You can create users in OpManager and provide required privileges to them. The option to create users is available only for the admin login account or those accounts which have 'Full Control' privilege. (The account with 'Full Control' privilege here ...
                    • Details of tables storing performance data in OpManager

                      Details of tables: The performance data tables in OpManager 7 and above are quite distributed, enabling better reporting. Here is a quick summary of the tables that you will need to take custom reports 1. ElementsAvailabilityHourly - Every day device ...
                    • Configuring OAuth authentication in OpManager with Google

                      OAuth is a secure authentication method that uses an authentication token instead of a password to connect your application to your user account. Using OAuth, resource owners can configure permissions separately for each client requesting access to ...