Prepare TAS Management server
Prepare the TAS server designated as the Management server. The Management server holds the repositories with the Docker images to be deployed on the TAS Application and Datastore servers. The Management server has additional requirements compared to the TAS Application and Datastore servers.
Before you begin
-
Verify that the Management server is prepared according to TAS server preparation and validation
-
Use FQDNs for server configuration
-
Verify that the distribution images folder has at least 100 GB space available
Procedure
-
Create the data directory to store the index, configuration, log, and transaction log files, and assign the required permissions:
-
Create the /<data_folder> directory:
Copymkdir -p /<data_folder>
where:
<data_folder> is the folder defined for data storage, and is by default opt/app/data.
-
Assign the TAS user group and the tas_app user as the owner of the directory:
Copychown -R tas_app:tas /<data_folder>
-
Assign the following permissions:
Copychmod -R 770 /<data_folder>
-
-
Create the /tas_installation directory and assign permissions:
-
Create the /tas_installation directory within the data folder:
Copymkdir /<data_folder>/tas_installation
-
Assign the TAS user group and the tas_inst user as the owner of the directory:
Copychown -R tas_inst:tas /<data_folder>/tas_installation
-
Assign the following permission:
Copychmod -R 770 /<data_folder>/tas_installation/
-
-
Schedule a cron job in CronTab to purge log files:
-
Optional. Install diagnostic tools for troubleshooting:
Copyyum -y install sysstat htop iotop iftop sysbench collectl
What to do next