Aspera

Aspera

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only

Moving Aspera Console Database to a Different location

By RAJAN N C KRISHNAN posted Tue September 24, 2024 06:23 AM

  

A standard install of Aspera Console deploys a MySQL server and the database is stored in a file in  /opt/aspera/common/mysql/data. 

There might be cases where this storage has to be moved to a different location. These are the steps needed to do so. 

Move Console Database from /opt/aspera/common/mysql/data/ to /IBM/mysqldata/data.new

sudo asctl all:stop
sudo mv /opt/aspera/common/mysql/data /opt/aspera/common/mysql/data.new
sudo mkdir /IBM/mysqldata
sudo mv /opt/aspera/common/mysql/data.new/ /IBM/mysqldata/
sudo ln -s /IBM/mysqldata/data.new/ /opt/aspera/common/mysql/data
sudo chown -R mysql:mysql /opt/aspera/common/mysql/data
sudo asctl all:start
sudo asctl all:status
That's it. Now, Console is running and the database is located in /IBM/mysqldata/data.new/
0 comments
10 views

Permalink