...
- Copy the license server software package to the cloud instance:
- Use sftp to connect to the cloud instance.
# sftp -i ~/.ssh/<mykey>
<user>@<cloud-instance-ip>
where
<mykey> is the private key of the keypair you associated with your cloud instance
<user> is the privileged user associated with your cloud instance (e.g., "opc" on OCI, or "centos" for a CentOS instance on AWS)
<cloud-instance-ip> the ip address of your cloud instance
- Copy the software package to the cloud instance using the following sftp command:
> put <local-path-to-license-server-package>
- Use ssh to log in on the cloud instance.
# ssh -i ~/.ssh/<mykey> <user>@<cloud-instance-ip>
- As a privileged user (root) go to the directory where you stored the installation package and install the package:
- Become the root user:
# sudo -i
- Go to the package location:
# cd <path-to-package-directory>
- Install the package:
- Linux 7.x:
# yum install license-server*.rpm
- Linux 8.x:
# dnf install license-server*.rpm
Below, you find the sample output of an installation:
Code Block |
---|
|
# yum install license-server-1.0.16.rpm
Loaded plugins: fastestmirror, langpacks
Examining license-server-1.0.16.rpm: license-server-1.0.16-1.x86_64
Marking license-server-1.0.16.rpm to be installed
Resolving Dependencies
--> Running transaction check
---> Package license-server.x86_64 0:1.0.16-1 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Installing:
license-server x86_64 1.0.16-1 /license-server-1.0.16 11 M
Transaction Summary
================================================================================
Install 1 Package
Total size: 11 M
Installed size: 11 M
Is this ok [y/d/N]: y
Downloading packages:
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : license-server-1.0.16-1.x86_64 1/1
Verifying : license-server-1.0.16-1.x86_64 1/1
Installed:
license-server.x86_64 0:1.0.16-1
Complete! |
Charon-SSP VE-Capable Emulator Software Installation
...