uncategorized

Install Zentyal 3.5 on Ubuntu Server 14.04.1

I don’t use this anymore, but kept the instructions here for future reference

I installed a fresh Ubuntu Server 14.04.1 with a static IP address. After logging in to the node, I made sure it was up to date:

1
2
3
4
5
6
7
8
9
sudo apt-get update
sudo apt-get dist-upgrade
cat /etc/apt/sources.list | grep zentyal > ~/etc.apt.sources.list.bkp
cat /etc/apt/sources.list | grep -v zentyal > ~/etc.apt.sources.list.new
echo 'deb http://archive.zentyal.org/zentyal 3.5 main extra' >> ~/etc.apt.sources.list.new
sudo bash -c 'cat ~/etc.apt.sources.list.new > /etc/apt/sources.list'
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8E9229F7E23F4777
sudo apt-get update
sudo apt-get install zentyal-core zentyal-software

Then I followed the prompts.

Then rebooted the node for good measure.

1
sudo reboot

When the system was back online and ready, I was able to connect to the HTTPS port of the node’s IP address with my web browser. For example: https://192.168.0.10

It’s important I used a static IP addresses for server nodes so that it wouldn’t change and I could access the web interface without having to find what IP address it changed to. Also each node should have it’s own IP address; no two nodes on the same network should have the same IP address at the same time.

Share