...
- Use sftp to connect to the license server instance.
# sftp -i ~/.ssh/<mykey>
<user>@<linux-ip>
where- <mykey> is the private key of the key-pair you associated with your cloud instance
(not needed for on-premises VMware installations that allow logins with username/password) - <user> is the user associated with your license server instance (e.g., opc on OCI, centos for a CentOS instance on AWS, or the custom user of your VMware virtual machine;
for an instance installed from a prepackaged, supported Charon marketplace image, use the SFTP user charon for Charon-SSP and centos for Charon-PAR) - <linux-ip> the ip address of your license server system
- <mykey> is the private key of the key-pair you associated with your cloud instance
- Copy the software package to the license server system using the following sftp command:
> put <local-path-to-license-server-package>
- Use ssh to log in on the license server system.
# ssh -i ~/.ssh/<mykey> <user>@<linux-ip>
- <mykey> is the private key of the key-pair you associated with your cloud instance
(not needed for on-premises VMware installations that allow logins with username/password) - <user> is the user for interactive login associated with your license server instance (e.g., opc on OCI, centos for a CentOS instance on AWS, or the custom user of your VMware virtual machine;
for an instance installed from a prepackaged, supported Charon marketplace image, use sshuser for Charon-SSP and centos for Charon-PAR) - <linux-ip> the ip address of your license server system
- <mykey> is the private key of the key-pair you associated with your cloud instance
- As a privileged user (root) go to the directory where you stored the installation package and update the package. If you used the VE image and copied the file using SFTP to user charon, the file will be in the hierarchy under /charon/storage.
- Become the root user:
# sudo -i
- Go to the package location:
# cd <path-to-package-directory>
- Install the package:
- Linux 7.x:
# yum update license-server*.rpm
- Linux 8.x:
# dnf update license-server*.rpm
- Linux 7.x:
- Become the root user:
...