Skip to content
Mitesh Shah edited this page Aug 7, 2014 · 13 revisions

EasyEngine (ee)

  1. Update Packages
  2. Setup FQDN
  3. Install wget command

Supported Linux Distribution:

12.04.x & 14.04.x

6.x & 7.x

Update Packages:

apt-get update && apt-get upgrade && apt-get dist-upgrade

Setup FQDN:

EasyEngine (ee) used hostname -f command output to detect your server hostname.

For the hostname, use your FQDN such as example.com

echo example.com > /etc/hostname
service hostname restart

How to test hostname is set properly:

^_^[[email protected]:~]# hostname -f
example.com

Install wget command:

Most of Linux distribution comes with wget command but some customised Linux like minimal Ubuntu/Debian not have wget command pre-installed. Ref: #292

How to install wget command:

apt-get install wget
Clone this wiki locally