Devstack installation on Ubuntu 14.04 server version. I installed on Vmware Player.
$ adduser stack
Install sudo if not installed
$ apt-get install sudo -y
Adding user to sudo group
$ sudo adduser stack sudo
Install git
$ sudo apt-get install git -y
Devstack clone
$ git clone https://git.openstack.org/openstack-dev/devstack
$ cd devstack
Config file copy
$ cp ./samples/local.conf .
Edit local.conf file
FLOATING_RANGE a range not used on the local network
FIXED_RANGE to configure the internal address space used by the instances
FLAT_INTERFACE to the Ethernet interface that connects the host to your local network
FLOATING_RANGE=192.168.1.0/24
FIXED_RANGE=192.168.149.1/24
FLAT_INTERFACE=eth1
This is could be goog if you have multiple network card
HOST_IP=127.0.0.1
Start installation
$./stack.sh
You can get these kind of errors, also find solution here
Error
[ERROR] /home/stack/devstack/functions-common:604 git call failed: [git clone https://github.com/kanaka/noVNC.git /opt/stack/noVNC
Solution
Download noVNC from github, extract as /opt/stack/noVNC .
And run ./stack.sh again.
Error
OfflineGenerationError at /auth/login/
You have offline compression enabled but key "71f1bb91aa1db46c691a399635d662c7" is missing from offline manifest. You may need to run "python manage.py compress".
Solution
/opt/stack/horizon/openstack_dashboard/local
COMPRESS_OFFLINE=True --> False
No comments:
Post a Comment