Hello!
I am trying to configure a polling tentacle on a VM that lives inside a private VPC on AWS so that my Octopus Deploy Cloud instance can use it. I am following the documentation but I’m stuck because I am getting a communication issue:
Checking that server communications are open failed with message The operation has timed out.. Retrying (1/5) in 00:00:00.7500000.
System.Net.WebException: The operation has timed out.
What I am doing is the following:
1- Install the Tentacle on the VM inside de private VPC (Ubuntu Server)
apt-key adv --fetch-keys https://apt.octopus.com/public.key
add-apt-repository "deb https://apt.octopus.com/ stretch main"
apt-get update
apt-get install tentacle
2- Running the following commands:
sudo /opt/octopus/tentacle/Tentacle create-instance --instance "Tentacle" --config "/etc/octopus/Tentacle/tentacle-Tentacle.config"
sudo /opt/octopus/tentacle/Tentacle new-certificate --instance "Tentacle" --if-blank
sudo /opt/octopus/tentacle/Tentacle configure --instance "Tentacle" --app "/home/Octopus/Applications" --noListen "True" --reset-trust
sudo /opt/octopus/tentacle/Tentacle register-worker --instance "Tentacle" --server "https://bairesdev.octopus.app" --name "testing-tentacle" --comms-style "TentacleActive" --server-comms-port "10943" --apiKey "API-XXXXXXXXXXXXXXXXXXXXXXXXX" --space "testing" --workerpool "tentacle-pool"
Where https://bairesdev.octopus.app is my OD instance where I created the API-key used in the previous command.
At this point, I get the message:
Checking connectivity on the server communications port 10943...
And after a while and error message:
Checking that server communications are open failed with message The operation has timed out.. Retrying (1/5) in 00:00:00.7500000.
System.Net.WebException: The operation has timed out.
I read port 10943 is already open on the OD Cloud Instance. I’ve checked the firewall rules on the VM in the private VPC and they seem correct (Allow all outgoing traffic on all ports to all destinations).
Any lights of what I’m missing?
Thanks!