Michael (Parker) Parker 6d31120f45 adding community section
Sorry Dane for the config.js mess but it was necessary for now.
2018-09-15 01:42:58 -04:00

1022 B

Install wings on CentOS 7

This guide covers the installation of the requirements for a daemon with SSL enabled.

toc

Install Requirements

The daemon requirements can be found here

General Requirements

yum install -y tar unzip make gcc gcc-c++ python

Docker

yum install -y yum-utils device-mapper-persistent-data lvm2

yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo

yum install -y docker-ce

systemctl enable docker
systemctl start docker

nodejs

curl --silent --location https://rpm.nodesource.com/setup_8.x | bash -
yum install -y nodejs

server ports

firewall-cmd --add-port 8080/tcp --permanent
firewall-cmd --add-port 2022/tcp --permanent
firewall-cmd --permanent --zone=trusted --change-interface=docker0
firewall-cmd --reload

Installing the daemon

Follow the regular guide to install the daemon