博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
RDO部署openstack(1)
阅读量:6813 次
发布时间:2019-06-26

本文共 1601 字,大约阅读时间需要 5 分钟。

1. 安装系统CentOS 6.5

 
2. 网络配置
 

Eth0 设置

# cat /etc/sysconfig/network-scripts/ifcfg-eth0DEVICE=eth0ONBOOT=yesHWADDR=00:E0:81:D8:42:F6TYPE=EthernetBOOTPROTO=staticIPADDR=10.1.199.8NETMASK=255.255.255.0

 

Eth1 设置

# cat /etc/sysconfig/network-scripts/ifcfg-eth1DEVICE=eth1TYPE=EthernetONBOOT=yesDEVICETYPE=ovsOVS_BRIDGE=br-exTYPE=OVSPort

重启网络,生效

/etc/init.d/network restart
3. 改用163源
 
cd /etc/yum.repos.d/wget http://mirrors.yum list; yum makecache
4.根据  安装
 
sudo yum install -y
sudo yum install -y
(J版:yum install http://rdo.fedorapeople.org/openstack-juno/rdo-release-juno.rpm)
sudo yum install -y openstack-packstack
 

Packstack takes the work out of manually setting up OpenStack. For a single node OpenStack deployment, run the following command.

packstack --allinone

If you have run packstack previously, there will be a file in your home directory named something like packstack-answers-20130722-153728.txt You will probably want to use that file again, using the --answer-file option, so that any passwords you've already set (eg, mysql) will be reused.

The installer will ask you to enter the root password for each host node you are installing on the network, to enable remote configuration of the host so it can remotely configure each node using Puppet.

Once the process is complete, you can log in to the OpenStack web interface "Horizon" by going to . The username is "admin". The password can be found in the file keystonerc_admin in the /root/ directory of the control node. 

 

高级功能

你可以通过生成配置文件,进行修改

packstack --gen-answer-file my_answers.txt

 

对my_answers.txt 进行设置,然后

packstack --answer-file my_answers.txt
 
 

转载地址:http://dckzl.baihongyu.com/

你可能感兴趣的文章
用面向接口编程思想看找对象
查看>>
OC文件操作习题
查看>>
Nginx常用命令
查看>>
TWaver GIS在电信中的使用
查看>>
几款程序员常用的辅助编程工具
查看>>
ios 正则表达式语法参考
查看>>
《Java性能优化权威指南》读书笔记(二)
查看>>
几个比较大的在线提交系统(Online Judge)
查看>>
2.0 tar打包工具详解
查看>>
运动前后饮食注意事项(转)
查看>>
Mybatis缓存
查看>>
CentOS 6.5挂载NTFS格式硬盘
查看>>
Ehcache 整合Spring 使用页面、对象缓存
查看>>
网页全屏插件 screenfull.js
查看>>
PL/SQL 过程与函数的声明
查看>>
curl 获取 https 请求方法
查看>>
ubuntu-16.04 安装虚拟机工具时报错
查看>>
负载均衡设计
查看>>
Android 数据序列化总结
查看>>
Jedis下的ShardedJedis(分布式)使用方法(二)
查看>>