xioaxu790 发表于 2015-2-4 20:12:41

Keystone,Horizon - tmpfs加速你的OpenStack

问题导读
1、什么是tmpfs?
2、如何加速Keystone,Horizon?
3、如何存储虚拟内存数据?

static/image/hrline/4.gif



我的环境:
openstack版本:icehouse
os : centos6.5 x86_64

tmpfs简介
系统启动时会将tmpfs挂载到 /dev/shm下,看这里
# cat /etc/fstab
tmpfs                   /dev/shm                tmpfs   defaults      0 0

tmpfs和ramdisk的区别
相同点:都可以使用RAM
不同点:tmpfs是文件系统;ramdisk是块设备,使用块设备每次都得先格式化

具体应用
# mkdir -p /dev/shm/tmp   # 在/dev/shm目录创建一个tmp目录
# chmod 1777 /dev/shm/tmp
# mount --bind /dev/shm/tmp /tmp#与实际tmp目录绑定


1   /tmp目录是keystone默认为openstack各大组件签证的目录
# ll /tmp/      
total 0
drwx------ 2 neutron    neutron    100 Oct6 15:52 keystone-signing-ISneL_
drwx------ 2 glance   glance   100 Oct6 15:52 keystone-signing-L9P1nI
drwx------ 2 nova       nova       100 Oct6 15:52 keystone-signing-UB328h
drwx------ 2 ceilometer ceilometer 100 Oct6 15:53 keystone-signing-Y4YIPp
drwx------ 2 ceilometer ceilometer 100 Oct6 15:48 keystone-signing-yVI_hQ
drwx------ 2 glance   glance   100 Oct6 15:52 keystone-signing-ZH5adK

2    horizon的LOCAL_PATH是/tmp目录
# vim /etc/openstack-dashboard/local_settings# 编辑dashboard配置文件
LOCAL_PATH = '/tmp'   
# vim /etc/rc.local   # 避免开机失去与/tmp目录的绑定,编辑rc.local,添加如下内容
/bin/mount --bind /dev/shm/tmp /tmp

还需注意的是tmpfs数据在系统重新启动后不会保留,因为虚拟内存本质上就是易失的,所以有些数据需要保留的,还需自己写一些脚本来实现。

本文转载自:http://iceyao.blog.51cto.com/9426658/1560828

页: [1]
查看完整版本: Keystone,Horizon - tmpfs加速你的OpenStack