The following instructions allow an administrator to perform the manual transfer of the primary dump and primary dump SHA-256 signature file to a single replica instance. Where there is more than one replica instance in the RSA Authentication Manager deployment, repeat the instructions for each replica instance that requires a sync.
When doing this procedure, only synchronize one replica instance at a time.
During Quick Setup, another username may have been selected. Use that username to log in.
login as: rsaadmin
Using keyboard-interactive authentication.
Password: <enter operating system password>
Last login: Mon Apr 20 16:39:41 2020 from jumphost.vcloud.local
RSA Authentication Manager Installation Directory: /opt/rsa/am
cd /opt/rsa/am/utils
./rsautil store -a add_config auth_manager.synchronization.manual_transfer.wait.minutes 15 GLOBAL 501
The global parameter auth_manager.synchronization.manual_transfer.wait.minutes is a timer delay providing fifteen (15) minutes for the administrator to perform a manual transfer of the primary dump and signature file to the replica instance. This value can be altered; however, fifteen minutes is more than enough time to move a 2GB primary dump with SHA-256 signature file to the replica instance.
The files ending with .groovy extensions are version-dependent with the version of RSA Authentication Manager. Use the file that is attached to this article only if you are running RSA Authentication Manager 8.2 Service Pack 1 patch 6. For any other versions, check with RSA Customer Support.
cd /opt/rsa/am/config/src/scripts/
cp SetupReplica.groovy SetupReplica.groovy.bak
cp /tmp/SetupReplica.groovy /opt/rsa/am/config/src/scripts
Restart the RSA Authentication Manager replica instance to activate the global parameter:
/opt/rsa/am/server/rsaserv restart all
Note that during Quick Setup, another username may have been selected. Use that username to login.
cd /opt/rsa/am/replication/attachment_data_for_replica
cd <instance_number>
The primary_dump and primary_dump.sha256 is created in the instance_<number> directory. When the administrator sees the primary_dump.sha256 file, further tasks are required to get the primary_dump and primary_dump.sha256 files into the /opt/rsa/am/replication/attachment_data_from_primary directory on the replica instance.
This article provides instructions to use SFTP (a secure command-line FTP program). Alternatively, use a different secure FTP client (for example, WinSCP) to copy the primary_dump and primary_dump.sha256 files from the /opt/rsa/am/replication/attachment_data_for_replica/instance_<number> directory on the primary instance into the /opt/rsa/am/replication/attachment_data_from_primary directory on the replica instance.
sftp <IP_address_of_primary>
cd /opt/rsa/am/replication/attachment_data_for_replica
sftp> ls
instance_810a23043f02a8c0293c1ae3674260f9 logs
sftp> cd instance_810a23043f02a8c0293c1ae3674260f9
get primary_dump
get primary_dump.sha256
sftp> ls -lah
drwx------ 0 1000 1000 4.0K Dec 19 12:31 .
drwx------ 0 1000 1000 4.0K Dec 19 12:26 ..
-rw------- 0 1000 1000 754M Dec 19 12:31 primary_dump
-rw------- 0 1000 1000 64B Dec 19 12:31 primary_dump.sha256
sftp> lls -alh
total 755M
drwx------ 2 rsaadmin rsaadmin 4.0K Dec 19 12:33 .
drwxr-xr-x 5 rsaadmin rsaadmin 4.0K Dec 19 12:25 ..
-rw------- 1 rsaadmin rsaadmin 754M Dec 19 12:33 primary_dump
-rw------- 1 rsaadmin rsaadmin 64 Dec 19 12:33 primary_dump.sha256
exit