----------------------- controller : ---------------------------------


source admin-openrc.sh


keystone user-create --name=swift --pass=000000 --email=swift@localhost

keystone user-role-add --user=swift --tenant=service --role=admin

keystone role-create --name=SwiftOperator

keystone user-role-add --user=swift --tenant=service --role=SwiftOperator


keystone service-create --name=swift --type=object-store --description="OpenStack Object Storage"

keystone endpoint-create --service-id=$(keystone service-list | awk '/ object-store/ {print $2}') \

--publicurl="http://controller:8080/v2/AUTH_%(tenant_id)s" \

--internalurl="http:/controller:8080/v2/AUTH_%(tenant_id)s" \

--adminurl="http://controller:8080/v2/AUTH_%(tenant_id)s"


----------------------- controller & compute : ---------------------------------


mkdir -p /etc/swift

echo "[swift-hash]" >> /etc/swift/swift.conf

echo "swift_hash_path_suffix = fLIbertYgibbitZ" >> /etc/swift/swift.conf


----------------------- compute : ---------------------------------


yum -y install openstack-swift openstack-swift-account openstack-swift-container openstack-swift-object xfsprogs xinetd rsync


cat /pro /part

(这里为sda6,根据自己情况)

mkfs.xfs -i size=1024 -f /dev/sda6

echo "/dev/sda6 /srv/node xfs noatime,nodiratime,nobarrier,logbufs=8 0 0" >> /etc/fstab

mkdir -p /srv/node

mount /dev/sda6 /srv/node

chown -R swift:swift /srv/node


vi /etc/rsyncd.conf

uid = swift

gid = swift

log file = /var/log/rsyncd.log

pid file = /var/run/rsyncd.pid

address = 127.0.0.1

[account]

max connections = 2

path = /srv/node

read only = false

lock file = /var/lock/account.lock

[container]

max connections = 2

path = /srv/node

read only = false

lock file = /var/lock/container.lock

[object]

max connections = 2

path = /srv/node

read only = false

lock file = /var/lock/object.lock


vi /etc/xinetd.d/rsync

disable = no

flags = IPv4


service xinetd start

chkconfig xinetd on


mkdir -p /var/swift/recon

chown -R swift:swift /var/swift/recon


----------------------- controller : ---------------------------------


yum install openstack-swift-proxy memcached python-swiftclient


openstack-config --set /etc/swift/proxy-server.conf DEFAULT bind_port 8080

openstack-config --set /etc/swift/proxy-server.conf DEFAULT workers 8

openstack-config --set /etc/swift/proxy-server.conf DEFAULT user swift

openstack-config --set /etc/swift/proxy-server.conf DEFAULT log_name proxy

openstack-config --set /etc/swift/proxy-server.conf DEFAULT log_level DEBUG

openstack-config --set /etc/swift/proxy-server.conf DEFAULT log_facility LOG_LOCAL0

openstack-config --set /etc/swift/proxy-server.conf pipeline:main pipeline healthcheck\ cache\ authtoken\ keystone\ proxy-server

openstack-config --set /etc/swift/proxy-server.conf app:proxy-server use egg:swift#proxy

openstack-config --set /etc/swift/proxy-server.conf app:proxy-server allow_account_management true

openstack-config --set /etc/swift/proxy-server.conf app:proxy-server account_autocreate true

openstack-config --set /etc/swift/proxy-server.conf filter:cache use egg:swift#memcache

openstack-config --set /etc/swift/proxy-server.conf filter:cache memcache_servers 127.0.0.1:11211

openstack-config --set /etc/swift/proxy-server.conf filter:catch_errors use egg:swift#catch_errors

openstack-config --set /etc/swift/proxy-server.conf filter:healthcheck use egg:swift#healthcheck

openstack-config --set /etc/swift/proxy-server.conf filter:keystone use egg:swift#keystoneauth

openstack-config --set /etc/swift/proxy-server.conf filter:keystone operator_roles admin,\ SwiftOperator,\ _member_

openstack-config --set /etc/swift/proxy-server.conf filter:keystone is_admin true

openstack-config --set /etc/swift/proxy-server.conf filter:keystone cache swift.cache

openstack-config --set /etc/swift/proxy-server.conf filter:authtoken paste.filter_factory keystoneclient.middleware.auth_token:filter_factory

openstack-config --set /etc/swift/proxy-server.conf filter:authtoken signing_dir /tmp/keystone-signing-swift

openstack-config --set /etc/swift/proxy-server.conf filter:authtoken auth_protocol http

openstack-config --set /etc/swift/proxy-server.conf filter:authtoken auth_host controller

openstack-config --set /etc/swift/proxy-server.conf filter:authtoken auth_port 35357

openstack-config --set /etc/swift/proxy-server.conf filter:authtoken admin_tenant_name service

openstack-config --set /etc/swift/proxy-server.conf filter:authtoken admin_user swift

openstack-config --set /etc/swift/proxy-server.conf filter:authtoken admin_password 000000


cd /etc/swift

swift-ring-builder account.builder create 18 3 1

swift-ring-builder container.builder create 18 3 1

swift-ring-builder object.builder create 18 3 1


swift-ring-builder account.builder add z1-192.168.100.20:6002R192.168.100.20:6005/sda6 100

swift-ring-builder container.builder add z1-192.168.100.20:6001R192.168.100.20:6004/sda6 100

swift-ring-builder object.builder add z1-192.168.100.20:6000R192.168.100.20:6003/sda6 100


swift-ring-builder account.builder

swift-ring-builder container.builder

swift-ring-builder object.builder


swift-ring-builder account.builder rebalance

swift-ring-builder container.builder rebalance

swift-ring-builder object.builder rebalance


拷贝 /etc/swift 中的 account.ring.gz、container.ring.gz 和 object.ring.gz 文件到存储(计算)节点 /etc/swift/ 下:

[root@controller swift]# cp *.gz /var/ftp

compute :

yum install ftp

cd /etc/swift/

ftp controller

Name (controller:root): anonymous

Password:

ftp> ls

ftp> get account.ring.gz

ftp> get container.ring.gz

ftp> get object.ring.gz

ftp> bye


controller :

chown -R swift:swift /etc/swift

service openstack-swift-proxy start

chkconfig openstack-swift-proxy on


----------------------- compute : ---------------------------------


sed -i 's/^bind_ip.*/#bind_ip = /g' /etc/swift/account-server.conf

sed -i 's/^bind_ip.*/#bind_ip = /g' /etc/swift/container-server.conf

sed -i 's/^bind_ip.*/#bind_ip = /g' /etc/swift/object-server.conf


mv /etc/swift/account-server.conf /etc/swift/account-server/1.conf

mv /etc/swift/container-server.conf /etc/swift/container-server/1.conf

mv /etc/swift/object-server.conf /etc/swift/object-server/1.conf


openstack-config --set /etc/swift/account-server/1.conf DEFAULT bind_port 6002

openstack-config --set /etc/swift/account-server/1.conf DEFAULT workers 2

openstack-config --set /etc/swift/account-server/1.conf DEFAULT user swift

openstack-config --set /etc/swift/account-server/1.conf DEFAULT devices /srv/node/

openstack-config --set /etc/swift/account-server/1.conf DEFAULT mount_check false

openstack-config --set /etc/swift/account-server/1.conf DEFAULT log_name swift-account

openstack-config --set /etc/swift/account-server/1.conf DEFAULT log_facility LOG_LOCAL1

openstack-config --set /etc/swift/account-server/1.conf DEFAULT log_level DEBUG

openstack-config --set /etc/swift/account-server/1.conf account-replicator vm_test_mode no


openstack-config --set /etc/swift/container-server/1.conf DEFAULT bind_port 6001

openstack-config --set /etc/swift/container-server/1.conf DEFAULT workers 2

openstack-config --set /etc/swift/container-server/1.conf DEFAULT user swift

openstack-config --set /etc/swift/container-server/1.conf DEFAULT devices /srv/node/

openstack-config --set /etc/swift/container-server/1.conf DEFAULT mount_check false

openstack-config --set /etc/swift/container-server/1.conf DEFAULT log_name swift-container

openstack-config --set /etc/swift/container-server/1.conf DEFAULT log_facility LOG_LOCAL1

openstack-config --set /etc/swift/container-server/1.conf DEFAULT log_level DEBUG

openstack-config --set /etc/swift/container-server/1.conf account-replicator vm_test_mode no


openstack-config --set /etc/swift/object-server/1.conf DEFAULT bind_port 6000

openstack-config --set /etc/swift/object-server/1.conf DEFAULT workers 2

openstack-config --set /etc/swift/object-server/1.conf DEFAULT user swift

openstack-config --set /etc/swift/object-server/1.conf DEFAULT devices /srv/node/

openstack-config --set /etc/swift/object-server/1.conf DEFAULT mount_check false

openstack-config --set /etc/swift/object-server/1.conf DEFAULT log_name swift-object

openstack-config --set /etc/swift/object-server/1.conf account-replicator vm_test_mode no


echo "local1.* /var/log/swift/storage1.log" >> /etc/rsyslog.d/10-swift.conf

mkdir -p /var/log/swift

chown -R swift:swift /var/log/swift

service rsyslog restart

chown -R swift:swift /var/swift

chown -R swift:swift /var/cache/swift


swift-init object-server start

swift-init object-replicator start

swift-init object-updater start

swift-init object-auditor start

swift-init container-server start

swift-init container-replicator start

swift-init container-updater start

swift-init container-auditor start

swift-init account-server start

swift-init account-replicator start

swift-init account-auditor start


vi /etc/rc.local

/usr/bin/swift-init object-server start

/usr/bin/swift-init object-replicator start

/usr/bin/swift-init object-updater start

/usr/bin/swift-init object-auditor start

/usr/bin/swift-init container-server start

/usr/bin/swift-init container-replicator start

/usr/bin/swift-init container-updater start

/usr/bin/swift-init container-auditor start

/usr/bin/swift-init account-server start

/usr/bin/swift-init account-replicator start

/usr/bin/swift-init account-auditor start




这时 web界面刷新后可以看到

多了一个存储。

这个可以提供给javaee 安卓开发做存储用


到这里,openstack的iaas基本就这样了。

如果有朋友有什么多的或者什么技术交流,可以再交流一下。

记一次云计算测试实验-openstack-icehouse-安装swift的更多相关文章

  1. ios – 200在xcode 7中生成DSMM警告

    解决方法我有同样的问题.Facebook表示他们已经意识到这一点并且不是高优先级,因为它不会影响应用程序.我回退到4.7.1警告问题不再存在.我不认为它会被拒绝但不能确定.

  2. xamarin.ios – Facebook iOS SDK:应用程序在启动时找不到“找不到符号:_ACFacebookAppIdKey.”仅在iOS 5中崩溃

    解决方法这是一个已修复的knownbug.目前唯一已知的解决方法是使用较旧版本的FacebookSDK.

  3. iOS – 友好的NSDate格式

    我需要在我的应用程序中显示帖子的日期给用户,现在我用这种格式:“5月25日星期五”.如何格式化NSDate以阅读“2小时前”的内容?使其更加用户友好.解决方法NSDateFormatter不能做这样的事情;你将需要建立自己的规则.我想像:所以这是打印’x分钟前’或’x小时前’从日期起24小时,通常是一天.

  4. osx – 无法创建目录/ var / teamsserver

    OpenSSH_6.2p2,OSSLShim0.9.8r8Dec2011debug1:Readingconfigurationdata/etc/ssh_configdebug1:/etc/ssh_configline20:Applyingoptionsfor*debug1:Connectingto1.2.3.4[1.2.3.4]portPORT.debug1:Connectionestablished.Couldnotcreatedirectory‘/var/teamsserver/.ssh’.debug

  5. ios – 如何在Xcode 4.5中完成代码签名

    解决方法事实证明,从AppStore升级XCode并不会自动升级所有内容.转到首选项/下载,并确保安装最新的命令行工具.

  6. xcode7 – 谁在创建文件“/private/var/tmp/Untitled-*.uicatalog”?

    我正在调查为什么TeamCity构建代理程序用完了磁盘,并且在/private/var/tmp中找到了超过11,000个文件,它们都以Untitled-.uicatalog行命名.每个文件至少0.6MB.总磁盘占用空间约为4GB.这些文件可以追溯到几个月,所以他们能够重新启动.谁在创造他们?Xcode在编译至少有一个图像的xcassets目录时创建这些目录.我可以删除它们吗?

  7. ios – Client.ipa不包含文件

    从过去的几天开始,我就把这头发错了.当我尝试提交基于cordova的iOS应用程序时,我收到一个错误,即符号工具失败.这就是我在日志中的内容:以下是尝试提交到应用商店时所述错误的屏幕截图:请帮忙.解决方法我有同样的错误,因为应用程序包中错误地包含了几个静态库(libXXX.a).它们显示在主.App下的最终上传确认框(列出权利和证书)中.我的解决方案是从项目中删除对这些静态库的所有引用,在链接器标

  8. ios – 如何获得.ipa文件路径

    我的应用程序包含敏感数据,所以我想为.ipa文件生成哈希键,是否可以这样做?

  9. ios – 在设备上运行时Swift应用程序崩溃 – dyld:未加载库:@ rpath / libswiftCore.dylib

    我是ios/xcode世界的新手,并尝试在运行iOSv8.0.2的iphone5上测试一个简单的Swift应用程序.该应用程序在xcode(版本6.1(6A1052d))中成功构建,但当它尝试在iphone上运行时,它崩溃并出现以下错误:我已经尝试过大多数建议,这些建议帮助了遇到此错误的其他人,但却没有运气.使用其他团队成员的构建环境构建时,相同的应用程序工作正常.我比较了构建设置,发现它们是相同

  10. 使用Swift作为Glance后端存储

    原文链接http://thornelabs.net/2014/08/03/use-openstack-swift-as-a-backend-store-for-glance.htmlBydefault,OpenStackGlancesavesimagesandOpenStackInstancesnapshotsonthelocalfilesystemin/var/lib/glance/images

随机推荐

  1. Swift UITextField,UITextView,UISegmentedControl,UISwitch

    下面我们通过一个demo来简单的实现下这些控件的功能.首先,我们拖将这几个控件拖到storyboard,并关联上相应的属性和动作.如图:关联上属性和动作后,看看实现的代码:

  2. swift UISlider,UIStepper

    我们用两个label来显示slider和stepper的值.再用张图片来显示改变stepper值的效果.首先,这三个控件需要全局变量声明如下然后,我们对所有的控件做个简单的布局:最后,当slider的值改变时,我们用一个label来显示值的变化,同样,用另一个label来显示stepper值的变化,并改变图片的大小:实现效果如下:

  3. preferredFontForTextStyle字体设置之更改

    即:

  4. Swift没有异常处理,遇到功能性错误怎么办?

    本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容,请发送邮件至dio@foxmail.com举报,一经查实,本站将立刻删除。

  5. 字典实战和UIKit初探

    ios中数组和字典的应用Applicationschedule类别子项类别名称优先级数据包contactsentertainment接触UIKit学习用Swift调用CocoaTouchimportUIKitletcolors=[]varbackView=UIView(frame:CGRectMake(0.0,0.0,320.0,CGFloat(colors.count*50)))backView

  6. swift语言IOS8开发战记21 Core Data2

    上一话中我们简单地介绍了一些coredata的基本知识,这一话我们通过编程来实现coredata的使用。还记得我们在coredata中定义的那个Model么,上面这段代码会加载这个Model。定义完方法之后,我们对coredata的准备都已经完成了。最后强调一点,coredata并不是数据库,它只是一个框架,协助我们进行数据库操作,它并不关心我们把数据存到哪里。

  7. swift语言IOS8开发战记22 Core Data3

    上一话我们定义了与coredata有关的变量和方法,做足了准备工作,这一话我们来试试能不能成功。首先打开上一话中生成的Info类,在其中引用头文件的地方添加一个@objc,不然后面会报错,我也不知道为什么。

  8. swift实战小程序1天气预报

    在有一定swift基础的情况下,让我们来做一些小程序练练手,今天来试试做一个简单地天气预报。然后在btnpressed方法中依旧增加loadWeather方法.在loadWeather方法中加上信息的显示语句:运行一下看看效果,如图:虽然显示出来了,但是我们的text是可编辑状态的,在storyboard中勾选Editable,再次运行:大功告成,而且现在每次单击按钮,就会重新请求天气情况,大家也来试试吧。

  9. 【iOS学习01】swift ? and !  的学习

    如果不初始化就会报错。

  10. swift语言IOS8开发战记23 Core Data4

    接着我们需要把我们的Rest类变成一个被coredata管理的类,点开Rest类,作如下修改:关键字@NSManaged的作用是与实体中对应的属性通信,BinaryData对应的类型是NSData,CoreData没有布尔属性,只能用0和1来区分。进行如下操作,输入类名:建立好之后因为我们之前写的代码有些地方并不适用于coredata,所以编译器会报错,现在来一一解决。

返回
顶部