摘要:
Ceph 准备工作 官方文档:http://docs.ceph.com/docs/master/rbd/rbd openstack/ 创建存储池 Create Ceph User ceph copy user.keyring to glance api node and cinder volume 阅读全文
摘要:
测试代码: #!/usr/bin/python # coding:utf8 import threading import time num = 0 def run(n): print 'this is %s num' % n global num time.sleep(1) num += 1 for i in range(200): t =... 阅读全文
摘要:
django models的代码 class Group(models.Model): name = models.CharField(max_length=64) def __unicode__(self): return self.name class Host(models.Model): h 阅读全文