Removal

Home / Resources / Guide / Removal

Removal

#fancy-title-662202d8ce5ac 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-662202d8cea5e a{ color: #274e75; }

Confirming encrypted tables

#fancy-title-662202d8d07d6 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-662202d8d15ef 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-662202d8d245b 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-662202d8d33af 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-662202d8d42e8 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