Introduction
The Synergy SKY Platform is a Linux-based container image that can be hosted within most virtualized environments. This article gives a short description of typical hosting environments.
Requirements
Processors | RAM | Storage(SSD) | |
Minimum | 2 vCPU | 8GB | 128 GB* |
Recommended | 6 vCPU | 16GB |
256 GB |
Preferred | 8 vCPU | 32GB |
512 GB |
* Partitions must contain at least 50GB in /home
The IP of the host machine must be static
Deployment
All the examples shown were done with Rocky Linux as it is an open-source operating system designed to be 100% bug for bug compatible with Red Hat Enterprise Linux.
VMware
- Download .iso from: https://rockylinux.org/download
- Upload to datastore:
- Drag and drop the image from step 1 into the Datastore browser window
- "Create a new virtual machine"
- "Customize Settings" > CD/DVD Drive 1 "Datastore ISO file" (from step 2)
Amazon Web Services (AWS)
Navigate to: https://aws.amazon.com/marketplace/search/results?searchTerms=rocky+9
Go through the following AWS steps:
- Click the button 'View purchase options'.
- Subscribe to this software, and click the 'Continue to Configuration' button.
- 'Continue to Launch'
- "Launch Instance"
- Configure server according to the requirements above and click 'Launch'.
When server has been fully launched and ready, please continue with Installation of the application as described below on this page.
Microsoft Azure
Navigate to: https://portal.azure.com/#home
Go through the following Azure steps:
- Click on, or search for "Virtual Machines"
- "+ Create" > "Azure Virtual Machine"
- "Image" > "See all images" > "Rocky Linux for x86_64 (AMD64) - Official"
- Configure server according to the requirements above and click 'Review + create'.
Google Cloud Platform (GCP)
https://console.cloud.google.com/
- Click on "+ Create a VM"
- Under "Boot disk"
- Click "Change"
- Select "Operating system = Rocky Linux" - "Version = Rocky Linux 9 optimized for GCP"
- Configure server according to the requirements above and click "Create"
Installation
Requirements
To install SynergySKY Management SUITE software, you will need:
- Access to the root account/A sudo capable user
- Internet access (to download required RPMs and installation files)
- At least 50GB free in /home directory
- Port 22 must be opened "from/to itself"
- This is to allow Ansible to install, configure and upgrade the Synergy SKY Management Suite
Step-by-Step Guide
- SSH to your Linux Virtual Machine
- Download the installation script: "curl -O https://download.joingw.com/SUITE/suite_quickinstaller.sh"
- Make sure the file is executable: "chmod 700 suite_quickinstaller.sh"
- Run the installation script: "sudo bash suite_quickinstaller.sh"
Quick version:
curl -O https://download.joingw.com/SUITE/suite_quickinstaller.sh; chmod 700 suite_quickinstaller.sh; sudo bash suite_quickinstaller.sh
- Follow the on screen prompts, estimated time for install is around 10 minutes. But depends on internet speeds.
- When complete you will be presented with the following information, store this for later:
- Open your firewall to allow access to the Configuration tool (443/tcp).
sudo firewall-cmd --permanent --add-port=443/tcp; sudo firewall-cmd --reload