Introduction
This document is intended to be used as a guide for setting up a LaunchPad in a virtual environment. It is not a step-by-step guide, but provides links and references to all documentation required to setup a LaunchPad in a virtual environment.
There are two main parts to this procedure:
Setup environment with the supported Operating System.
Install and setup AWS Systems Manager Agent.
Once these steps are complete, contact your Noda Customer or Partner Success Manager to provision the device in the Noda cloud.
Assumptions and Notes
AWS Systems Manager Agent grants Noda root level shell access, but does not require inbound SSH access.
The user is familiar with configuring an OS on bare metal hardware or in a virtual environment.
The user is able to configure IP settings in the OS to enable access to the internet.
The user is familiar with good security practices for OS user account setup.
The document does not specify, or have any preference for how the OS must be installed.
The document does not specify the exact hardware to use.
Virtual Environment Requirements
This section outlines the requirements for the virtual environment and software. When deployed, all data storage, analytics and communications are handled by the LaunchPad.
Below are the recommended minimum hardware resources needed for the LaunchPad. Currently we only recommend x86_64 architecture based CPUs. With respect to CPU, the chosen CPU can be any similar or more powerful model. A good source of reference for CPU performance is PassMark CPU scores. We don't have a preference on storage type, it can be eMMC, SSD or HDD.
Three minimum specifications are listed below, based on system size as defined by connected equipment.
| Small | Medium | Large |
Connected Equipment | Up to 250 equips | 250 – 1000 equips | Over 1000 equips |
Processor | Dual/quad core low/mid range CPU, PassMark score approx. 2,000+ (ex. recent Intel Celeron N/J processors) | Dual/quad core mid/high range CPU, PassMark score approx. 4,000+ (ex. recent Intel Celeron, Pentium, Core processors) | Contact Noda for sizing |
RAM | 8GB | 16GB |
|
Storage | 128GB | 256GB |
|
Connectivity
The LaunchPad will need outbound internet access on port 443 and 465. Details of the project specific communications will be provided in an accompanying network architecture diagram and full details to outbound endpoints can be found at LaunchPad Network Connectivity Requirements.
For all configurations, we recommend a server with at least two (2) hardwired ethernet ports. In some installations, the IT and OT networks are physically separated. In this case the two ports allows connection to both. Routing between the ports is disabled in the kernel by default and should NOT be enabled
OS Installation
LaunchPad deployments are supported on the following OS's
Ubuntu Server 20.04x
RHEL 8
RHEL 9
As a reference, see documentation for installing Ubuntu Server or RedHat. There is no preference for how the OS is installed, i.e. if the user has deployment infrastructure or installation is by hand. The user is also free to setup OS parameters appropriately for their locale, with our only specific requirements outlined below.
Note: Currently Ubuntu 22.04 is available, and the OS installer will ask if it should upgrade the installation. As of January 31, 2024, please do not upgrade above 20.04.x. Noda will qualify Ubuntu 22.04 and notify Virtual LP admins when they can upgrade.
Special Considerations for Ubuntu Server
By default, Ubuntu comes with the snap package manager installed. This needs to be removed, as it complicates installation of the AWS SSM agent.
Verify that the snap package manager is installed with the below command:
which snap
If it returns a path such as /usr/bin/snap then snap is currently installed.
If snap is installed run the following commands in order to disable and uninstall it:
sudo systemctl stop snapd && \
sudo systemctl disable snapd && \
sudo apt remove --purge--assume-yessnapd gnome-software-plugin-snap && \
rm-rf~/snap/ && \
sudo rm-rf/var/cache/snapd/ && \
sudo systemctl daemon-reload
Snap should now be uninstalled, this can be confirmed by running which snap again and see no path.
Python Requirements
Parts of the Launchpad depend on Python 3. Python versions vary between OS's. The default installed versions are as follows:
• Ubuntu 20.04.x - Python 3.8
• RHEL 9 - Python 3.9
• RHEL 8 - None installed (see note below)
As of this writing, Python 3.8 and Python 3.9 are supported.
Python on RHEL 8
On RHEL 8, the default version pulled from the package repository is Python 3.6. However, Python 3.6 causes dependency errors for Launchpad. The dnf package manager provides several versions of Python for RHEL 8. The best option, on a clean system, is to install Python 3.9 instead of the default (3.6). This requires specifying the version during install (for example sudo dnf install python39). In this case, we expect the host python3 command is aliased to python3.9. If this is not possible please let us know.
Root User Configuration
During the installation the user must configure an OS system user. This user is the “root” level user and is able to perform any action on the system. It is strongly recommended to use a password manager (such as Lastpass) to generate, store and share user passwords.
As mentioned in the assumptions section, it is expected proper security practices are followed for password complexity. The policy for password complexity is as follows:
Minimum Password Length - All passwords must have at least 8 characters
Password Complexity - All user-chosen passwords must contain at least one alphabetic, one number and one symbol (e.g., !@#$%^&*) character. An uppercase alphabetic character must also be present.
Network Connectivity
The device must be able to access the internet for the provisioning process to be completed and provide full product functionality thereafter. During the OS setup, the user is given the opportunity to configure the network interface.
If configuration is required via the command line, the Ubuntu Network Documentation provides excellent instructions. Alternately, see RedHat Network Documentation.
AWS Systems Manager
AWS Systems Manager is a remote monitoring and fleet management platform which Noda uses to manage field devices. AWS Systems Manager enables:
Remote software patching and auditing
Remote configuration and setup
Remote OS level troubleshooting
AWS Systems Manager Installation
The AWS Systems Manager configuration consists of running the provided script with an activation id and activation code. Please contact Noda for the codes before you begin this installation. Please be aware that by default the codes expire after 24 hours from issue time. If they expire before they are used, new codes are required. Also please be aware that it is possible to batch device activations where a single set of codes can be used for multiple devices. This must be specified when requesting the codes.
Installation of the Systems Manager Agent requires shell access to the device. The below convenience script can be run in order to download, install and activate the agent. Alternatively, see further below for the official AWS documentation.
Install Script
read -p "Activation Code: " ACTIVATIONCODE && \
read -p "Activation ID: " ACTIVATIONID && \
mkdir /tmp/ssm && \
curl https://amazon-ssm-us-west-2.s3.us-west-2.amazonaws.com/latest/debian_amd64/ssm-setup-cli -o /tmp/ssm/ssm-setup-cli && \
sudo chmod +x /tmp/ssm/ssm-setup-cli && \
sudo /tmp/ssm/ssm-setup-cli -register -activation-code $ACTIVATIONCODE -activation-id $ACTIVATIONID -region "us-west-2"
The AWS documentation offers further explanation and details on AWS Systems Manager.
The commands to install on Ubuntu are found under the Ubuntu section. Please use the `Using .deb packages` section.
The commands to install on RHEL 8/9 are found under the RHEL 8.x and CentOS 8x section.
The installation command expects the region to be specified, marked in red in the provided commands. Use the `us-west-2` region.
At this point the agent should be installed and activated.