How to install devstack on ubuntu 16.04
2019. 12. 30. 18:49ㆍOS/리눅스
반응형
environment
tool : vmware 15 pro
linux_v : ubuntu-16.04-LTS
kernel_v : 4.13.0-36-generic
cpu : 4
mem : 8G
Root permission : (#>)
normal permission : ($>)
#> systemctl disable ufw
#> systemctl stop ufw
#> useradd -s /bin/bash -d /opt/stack -m stack
#> echo "stack ALL=(ALL) NOPASSWD: ALL" | tee /etc/sudoers.d/stack
#> apt-get install -y git
#> su - stack
$> git clone https://git.openstack.org/openstack-dev/devstack -b stable/queens
$> cd devstack
$> vi local.conf
[[local|localrc]]
ADMIN_PASSWORD=devstack
DATABASE_PASSWORD=$ADMIN_PASSWORD
RABBIT_PASSWORD=$ADMIN_PASSWORD
SERVICE_PASSWORD=$ADMIN_PASSWORD
HOST_IP=(ip address)
$> sudo vi /etc/hosts
(ip address) devstack
$> ./stack.sh
반응형
'OS > 리눅스' 카테고리의 다른 글
How to install IPS(suricata) on unubntu 20.04 (2) | 2021.09.08 |
---|---|
how to change static ip on ubuntu 18.04-LTS with vmware (0) | 2020.01.30 |
how to install mariadb on centos7 (0) | 2019.11.04 |
how to install telnet on ubuntu 16.04LTS (0) | 2019.09.26 |
how to install java 11 on ubuntu 16.04 (0) | 2019.07.01 |