- 1、本文档共19页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
openstack第七版本
Table of Contents
What is it?
1. Requirements
2. Preparing your node
3. Keystone
4. Glance
5. Quantum
6. Nova
7. Cinder
8. Horizon
9. Your first VM
1. Requirements
Node Role: NICs Single Node: eth0 (1), eth1 (1)
2. Preparing your node
2.1. Preparing Ubuntu
* After you install Ubuntu 12.04 Server 64bits, Go in sudo mode and dont leave it until the end of this guide:
* sudo -i
* Add Grizzly repositories:
apt-get install ubuntu-cloud-keyring python-software-properties software-properties-common python-keyring
echo deb /ubuntu precise-updates/grizzly main /etc/apt/sources.list.d/grizzly.list
*Update your system:
apt-get update
apt-get upgrade
apt-get dist-upgrade
2.2.Networking
*Only one NIC should have an internet access (/etc/network/interfaces)
#For Exposing OpenStack API over the internet
auto eth1
iface eth1 inet static
address 1
netmask
gateway
dns-nameservers
#Not internet connected(used for OpenStack management)
auto eth0
iface eth0 inet static
address 1
netmask
*Restart the networking service:
service networking restart
2.3. MySQL RabbitMQ
*Install MySQL and specify a password for the root user:
apt-get install -y mysql-server python-mysqldb
Configure mysql to accept all incoming requests:
*sed -i s///g /etc/mysql/f
service mysql restart
* Install RabbitMQ:
apt-get install -y rabbitmq-server
* Install NTP service:
apt-get install -y ntp
2.5. Others
*Install other services:
apt-get install -y vlan bridge-utils
*Enable IP_Forwarding:
sed -i s/#net.ipv4.ip_forward=1/net.ipv4.ip_forward=1/ /etc/sysctl.conf
# To save you from rebooting, perform the following
sysctl net.ipv4.ip_forward=1
3. Keystone
* Start by the keystone packages:
apt-get install -y keystone
* Verify your keystone is running:
service keystone status
* Create a new MySQL database for keystone:
mysql -u root -p
CREATE DATABASE keystone;
GRANT ALL ON keystone.* TO keystoneUser@% IDENTIFIED BY keystonePass;
quit;
* Adapt the connection attribute in the /etc/keystone/keystone.conf to the new
您可能关注的文档
- Glad you camm和 I love you forever.doc
- ORACLE AWR报告生成和分析.docx
- 歌词gladyoucame needyou now.doc
- 本科英语语法—形容词.doc
- Unit 9 Hollywood Words and Expressions综合教程一.doc
- 牛津译林版英语七年级上册期末考试知识点梳理 unit1-4.docx
- 中国黑客X档案 20---- 安全焦点组织.doc
- 习思水平检测2010三级.doc
- 模块10 Unit one短语与练习.doc
- 15秋学期《外贸函电》在线作业.doc
- 10《那一年,面包飘香》教案.docx
- 13 花钟 教学设计-2023-2024学年三年级下册语文统编版.docx
- 2024-2025学年中职学校心理健康教育与霸凌预防的设计.docx
- 2024-2025学年中职生反思与行动的反霸凌教学设计.docx
- 2023-2024学年人教版小学数学一年级上册5.docx
- 4.1.1 线段、射线、直线 教学设计 2024-2025学年北师大版七年级数学上册.docx
- 川教版(2024)三年级上册 2.2在线导航选路线 教案.docx
- Unit 8 Dolls (教学设计)-2024-2025学年译林版(三起)英语四年级上册.docx
- 高一上学期体育与健康人教版 “贪吃蛇”耐久跑 教案.docx
- 第1课时 亿以内数的认识(教学设计)-2024-2025学年四年级上册数学人教版.docx
文档评论(0)