For example, if you use the following command to install the agent:
curl -o setup_agent.shhttps://setup.instana.io/agent&& chmod 700 ./setup_agent.sh && sudo ./setup_agent.sh -a xxxxxxxxxxxxxxxxxxxxxx -d xxxxxxxxxxxxxxxxxxxxxx -t dynamic -e instana-ibm.com:1444
In case you see an error message similar to this after running the above command:
Red Hat Satellite or RHN Classic support will be disabled.
Error communicating with server. The message was:
Unable to connect to the host and port specified
warning: /var/cache/yum/s390x/7Server/instana-agent/packages/instana-agent-dynamic-20220902-1130.s390x.rpm: Header V4 RSA/SHA256 Signature, key ID 31933e68: NOKEY
Importing GPG key 0x31933E68:
Userid :stan@instana.com <stan@instana.com>
Fingerprint: 386f 852e 8b64 01eb 34fd 86e8 6aa7 718d 3193 3e68
From :https://packages.instana.io/Instana.gpg
It's not an issue, the problem is due to the fact that you have no Azul JVM available for s390x.
You simply try with the same command and add the-j
option to use the J9 JVM:
curl -o setup_agent.sh https://setup.instana.io/agent && chmod 700 ./setup_agent.sh && sudo ./setup_agent.sh -a xxxxxxxxxxxxxxxxxxxxxx -d xxxxxxxxxxxxxxxxxxxxxx -t dynamic -e instana-ibm.com:1444 -j
Comments