Server Access

If you want us to migrate your forum to our hosting, we might need access to your server. Below is some code you need to paste into a root shell on your server.

It creates a user called ‘communiteq’ which can be accessed by us using our encrypted private key. After pasting the code, please contact our support and let us know that you have done this. Please include the IP address of your server. If your ssh server is not using the default port (22), then please let us know the ssh port number as well.

sudo adduser --disabled-password --gecos "Communiteq" communiteq
sudo su -c 'echo communiteq ALL = NOPASSWD: ALL > /etc/sudoers.d/communiteq' root
sudo su - communiteq
mkdir .ssh
chmod 700 .ssh
curl https://downloads.discoursehosting.com/keys/rsakey.pub.txt >> ~/.ssh/authorized_keys
chmod 600 .ssh/authorized_keys