Removal

Home / Resources / Guide / Removal

Removal

#fancy-title-65f92feb9c444 a{ color: #274e75; }
The deletion of the Security Agent can be accomplished in four steps: encryption cancellation, plug-in deletion, pausing the Keymanager, and installed file deletion.

Encryption Cancellation

#fancy-title-65f92feb9c913 a{ color: #274e75; }

Confirming encrypted tables

#fancy-title-65f92feb9e6cd a{ color: #274e75; }
Using the command below, it is possible to view the tables within the DAMO-MYISAM or DAMO_INNODB storage engine:
mysql > select TABLE_SCHEMA, TABLE_NAME, ENGINE from INFORMATION_SCHEMA.TABLES where ENGINE='DAMO_MYISAM' or ENGINE='DAMO_INNODB';

Changing the storage engine

#fancy-title-65f92feb9f475 a{ color: #274e75; }
Change storage engine of each observed table to MyISAM or InnoDB:
mysql > alter table . engine=['MyISAM'|'InnoDB'];

Plug-in Deletion

#fancy-title-65f92feba0306 a{ color: #274e75; }
Deleting storage engines and functions installed in MySQL.
Execute $DAMO_INST_HOME/sql/unins-plugin.sql script to delete storage engines and functions installed in MySQL:
$> mysql –u root –p < $DAMO_INST_HOME/sql/unins_plugin.sql

Pausing the Key manager

#fancy-title-65f92feba11f1 a{ color: #274e75; }
To pause the Keymanager using shared memory:
Pause Keymanager in $DAMO_INST_HOME/bin:
$> ./keymanager_cis-3.2 –stop

Installed file deletion

#fancy-title-65f92feba213b a{ color: #274e75; }
Deleting symbolic link and install directory:
$> unlink $CIS_CC_HMAC_PATH/libcis_cc-3.2.so  
$> unlink $CIS_CC_HMAC_PATH/libcis_ce-3.2.so  
$> unlink $CIS_CC_HMAC_PATH/libcis_cc-3.2.so.hmac  
$> unlink $CIS_CC_HMAC_PATH/libdamo.so  
$> rm –rf $DAMO_INST_HOME