In order to clear space from the DB table utilization, please run below steps.
shell> df -h
shell> ls -lh /usr/local/strongauth/mariadb-<latest-version>/ibdata/strongkeylite/decryption_requests.*
shell> ls -lh /usr/local/strongauth/mariadb-<latest-version>/ibdata/strongkeylite/search_requests.*
shell> sudo service glassfishd stop
shell> cd /usr/local/strongauth/dbdumps
shell> mysqldump -u root -p -w "request_date>'2023-01-01 00:00:00'" --lock-all-tables --insert-ignore --no-create-info strongkeylite decryption_requests > dec_req_2023jan1.db
shell> mysqldump -u root -p -w "request_date>'2023-01-01 00:00:00'" --lock-all-tables --insert-ignore --no-create-info strongkeylite search_requests > search_req_2023jan1.db
|
shell> mysql -u skles -p strongkeyliteor
shell> mys
MariaDB [strongkeylite]> truncate decryption_requests;
MariaDB [strongkeylite]> truncate search_requests;
|
MariaDB> exit
shell> ls -lh /usr/local/strongauth/mariadb-10.2.30/ibdata/strongkeylite/decryption_requests.*
shell> ls -lh /usr/local/strongauth/mariadb-10.2.30/ibdata/strongkeylite/search_requests.*
shell> df -h
shell> sudo service glassfishd start
|