Install Replicated on Elasticsearch nodes (traditional airgap)
The Admin Console (Replicated) is the interface where you can configure, update, and manage Jama Connect. To install the latest supported version of Replicated on all Elasticsearch nodes, you use the Replicated installation script.
Make sure your systems meet all prerequisites.
Update the Docker host system:
Open the /etc/sysctl/conf file and add this line:
vm.max_map_count=262144
Stop Jama Connect:
replicatedctl app stop --attach
Stop the Docker service:
sudo systemctl stop docker
Reload the sysctl.conf file:
sysctl -p
Confirm that the file is reloaded:
sudo sysctl -a | grep max_map_count
The system responds with this message:
vm.max_map_count=262144
Restart the Docker service:
sudo systemctl start docker
Restart Jama Connect:
replicatedctl app start
Copy the replicated.tar.gz that was used in the jamacore node to the remote Elasticsearch nodes.
Enter this command in the server's command line:
tar -xzvf replicated.tar.gzinstall.shoperator_install.shreplicated-operator.tarreplicated-ui.tarreplicated.tar
In the same directory, run the following command to run the Replicated airgap installation script:
sudo ./operator_install.sh airgap \ daemon-endpoint="<DAEMON_ADDRESS:PORT>" \ daemon-token="<SECRET_TOKEN>" \ private-address="<NODE_PRIVATE_IP_ADDRESS>" \ public-address="<NODE_PRIVATE_IP_ADDRESS>"\ tags="elasticsearch"