...
- Use ssh to log in on the cloud instance.
# ssh -i ~/.ssh/<mykey> <user>@<cloud-instance-ip>
- <mykey> is the private key of the key-pair you associated with your cloud instance
- <user> is the user for interactive login associated with your cloud instance (e.g., opc on OCI, or centos for a CentOS instance on AWS; for an instance installed from a prepackaged Charon-SSP VE image, use sshuser)
- <cloud-instance-ip> the ip address of your cloud instance
- As a privileged user (root) perform the deinstallation command:
- Become the root user:
# sudo -i
- Remove the VE license server package:
- Linux 7.x:
# yum erase license-server*.rpm
- Linux 8.x:
# dnf erase license-server*.rpm
- Linux 7.x:
- Become the root user:
...