Sentora Support Forums

Full Version: Scaleway install - HOWTO
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Working as of 2014-04-14.  May break in the future, but if you have success, please post updates.


Ongoing update of getting sentora to work at scaleway.com:

Assumptions:
  • you've started up a ubuntu 14.04 LTS at scaleway.
  • you've entered your ssh keys
  • you're logged in via ssh

The following symbol means bash prompt.

Quote:$>




Backup your sources.list
Quote:$> cp /etc/apt/sources.list /etc/apt/sources.list.original


Create new sources.list

Quote:$> echo "deb http://ports.ubuntu.com/ubuntu-ports trusty main restricted universe multiverse" > /etc/apt/sources.list

$> echo "deb http://ports.ubuntu.com/ubuntu-ports trusty-security main restricted universe multiverse" >>/etc/apt/sources.list
$> echo "deb http://ports.ubuntu.com/ubuntu-ports trusty-updates main restricted universe multiverse" >>/etc/apt/sources.list
$> apt-get update && apt-get dist-upgrade -y


Install prerequisites:

Quote:$> apt-get install sudo vim make zip unzip debconf-utils at build-essential bash-completion wget dnsutils



Download the installer script

Quote:wget https://raw.githubusercontent.com/sentor...install.sh


Edit the sentora_installer, which you downloaded.
Remove the lines that modify the sources.list file, and the subsequent downloads. [these were breaking for me]

Quote:# ***************************************

# Installation really starts here

#--- Set custom logging methods so we create a log file in th
logfile=$(date +%Y-%m-%d_%H.%M.%S_sentora_install.log)
touch "$logfile"
exec > >(tee "$logfile")
exec 2>&1
[keep lines above]
...

[delete everything in the middle.]
...

[keep the lines below]
#--- Download Sentora archive from GitHub
echo -e "\n-- Downloading Sentora, Please wait, this may take
# Get latest sentora

Now, run the installer:
Quote:$> bash sentora_install.sh

Run through the prompts.
Go to your subdomain you specified.
Login with zadmin, and the password generated.

Done.