Scaleway install - HOWTO
04-15-2015, 08:25 AM
(This post was last modified: 10-17-2015, 04:11 AM by Alpha1125.)
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:
The following symbol means bash prompt.
Backup your sources.list
Create new sources.list
Install prerequisites:
Download the installer script
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]
Now, run the installer:
Run through the prompts.
Go to your subdomain you specified.
Login with zadmin, and the password generated.
Done.
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.