Removal
#fancy-title-673ee5b791532 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-673ee5b7919f1 a{ color: #274e75; }
Confirming encrypted tables
#fancy-title-673ee5b793774 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-673ee5b7945cf 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-673ee5b795482 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-673ee5b7963c6 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-673ee5b797323 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