To generate an SSH private/public key pair, you can run the ssh-keygen command from the command line.
Ensure that you do not already have a public key saved to your computer. To determine if you already have a saved public key, run the following command:
cd ~/.ssh; ls -lYou can also use your existing public key.
Run the following command to generate a new key pair:
ssh-keygen -t rsa -f <keyname>After generating the key pair, you can create a Support ticket and request SSH access to Task Server.
~/.ssh/config directory.Update the config file.
Host bastion
HostName <ip of bastion server>
User <application name>
IdentityFile <path of your private key>
Host task
HostName <internal ip of task server>
User <application name>
ProxyCommand ssh bastion -W %h:%p
IdentityFile <path of your private key>Run the following command to log in to Task Server through SSH:
ssh taskAny traffic to Acquia China Hosting is protected with AWS VPC VCL and a security group. To SSH into Task Server(s), create a Support ticket with the following information:
If this content did not answer your questions, try searching or contacting our support team for further assistance.
If this content did not answer your questions, try searching or contacting our support team for further assistance.