openstack
文章平均质量分 51
yue492008824
这个作者很懒,什么都没留下…
展开
-
用shell脚本操作mysql数据库
#!/bin/shmysql -u root -h localhost -pYourPassword CREATE DATABASE DBnameUSE DBnameCREATE TABLE TBname (name char(20), age int)INSERT INTO TBname VALUES ('Rardge', 25),('AAA', 30)SELECT *原创 2014-09-17 17:17:56 · 463 阅读 · 0 评论 -
openstack安装笔记
学习openstack也已经有两周的时间了,安装过程中也遇到了很多的问题,原创 2014-07-17 11:41:42 · 2052 阅读 · 0 评论 -
openstack源码安装过程中的几个坑
openstack源码安装已经做过几遍了,总结了一下常见的jigekeng原创 2014-09-18 14:34:56 · 1440 阅读 · 0 评论 -
ubuntu14.04下手动安装openstack juno版
一般照着官方文档做肯定没有问题的,之前一直用redhat的CentOS跟着官方安装都是没有问题的,由于工作需要研究Ceph,CentOS对Ceph的支持不是很好,CentOS7好像都不支持rbd(尽管redhat收购了Ceph,必须要批评一下红帽),桑心啊,没法子了,所以转向了ubuntu。问题:nova list ERROR: HTTPConnectionPool(host='c原创 2015-01-21 10:01:53 · 929 阅读 · 0 评论 -
ubuntu14.04下devstack安装openstack
1安装ubuntu14.04 64bit ,gengxing原创 2014-11-20 10:23:16 · 1009 阅读 · 0 评论 -
文章标题
安装horizon_demo建议在virtualenv环境中运行mkdir demogit clone https://github.com/gabrielhurley/horizon_demo.gitcd horizon_demo/安装依赖包:sudo apt-get install libssl-dev libffi-devpython tools/install_venv.py原创 2015-05-07 10:06:05 · 523 阅读 · 0 评论 -
ubuntu修改ip地址重启网络
Ubuntu修改网卡配置文件:vim /etc/network/interfacescat /etc/network/interfacesauto eth0iface eth0 inet static address 192.168.1.41 gateway 192.168.1.1 netmask 255.255.255.0原创 2015-03-16 16:07:11 · 3275 阅读 · 0 评论