centos6.4 ceph安装部署之ceph object storage
preface:
ceph-deploy does not provide a rapid installation for Ceph Object Storage
install Configuration ceph object storage gateway
1,install ceph object storage gateway
multiple regions and zones
ins synchronization agent
安装apache fastcgi for centos6.4
sudo yum install httpd mod_fastcgi
ceph object gateway daemon runs on apache and FastCui
for run a ceph object storage service, you must intall apache and fastcgi,ceph object gateway daemon
multiple regions and zones
synchronization agent
rewrite module is enabled: /etc/httpd/conf/httpd.conf
#if not present, add
LoadModule rewrite_module modules/mod_rewrite.so
ensure that the fastcgi module is enabled,the installer should include an /etc/httpd/conf.d/fastcgi.conf
#if not present, add
LoadModule fastcgi_module modules/mod_fastcgi.so
http Enable ssl for centos6.4 archPlatfoorm
some rest clients use https by default,so you should consider enabling ssl for apache
for centos rpm packages:
yum install mod_ssl openssl
ensure the ssl module is enabled
generate a certificate and copy it to the appropriate locations
openssl x509 -rep -days 365 -in ca.csr -signkey ca.key -out ca.crt
cp ca.crt /etc/pki/tls/certs
cp ca.key /etc/pki/tls/private/ca.key
cp ca.csr /etc/pki/tls/private/ca.csr
install ceph object gateway
ceph object storage services use the ceph object gateway daemon(radosgw) to enable the gateway,for federated architectures,the synchronization agent(radosgw-agent) provides data and metadata synchronization between zones and regions
to install the ceph object gateway daemon ceph object gateway synchronzation agent
yum install ceph-radosgw ceph
yum -y install radosgw-agent
configure the gateway
once you have installled the ceph object gateway packages,the next is to configure your ceph object gateway
two approaches:
1,simple: ceph object gateway configuration implies that you are running a ceph object storage service in a geographically can configure the ceph object gateway without regard to regions and zones
2,federated: federated ceph object gateway configuration implies that you are running a ceph object storage service in a geoeraphically distributed manner for fault tolerance and failover,this involves configuring your ceph object gateway instances with regions and zones
ceph object gateway daemon(ceph-radosgw) synchronization agent(radosgw-agent)
ceph-object-gateway daemon runs on apache and fastcgi
centos6.4 ceph安装部署之ceph object storage的更多相关文章
- centos6.4 ceph安装部署之ceph block device
1,prelight/preface ceph storage clusterceph block deviceceph filesystemceph object storage 此篇记录ceph ...
- 最新版CentOS6.5上安装部署ASP.NET MVC4和WebApi
最新版CentOS6.5上安装部署ASP.NET MVC4和WebApi 使用Jexus5.8.1独立版 http://www.linuxdot.net/ ps:该“独立版”支持64位的CentOS ...
- centos6.4 ceph安装部署之cephFS
1,ceph fileSystem
- 002.Ceph安装部署
一 前期准备 1.1 配置规格 节点 类型 IP CPU 内存 ceph-deploy 部署管理平台 172.24.8.71 2 C 4 G node1 Monitor OSD 172.24.8.72 ...
- ceph安装Dashboard并开启Object Gateway管理功能
安装配置dashboard Ceph-Dashboard 是用 Python 开发的一个 Ceph 的监控面板,用来监控 Ceph 的运行状态.同时 提供 REST API 来访问状态数据. 低版本的 ...
- Linux Centos6.9下安装部署VNC的实操详述
VNC (Virtual Network Console)是虚拟网络控制台的缩写.它 是一款优秀的远程控制工具软件,由著名的AT&T的欧洲研究实验室开发的.VNC 是在基于 UNIX和 Lin ...
- ceph安装部署
环境准备 测试环境是4台虚拟机,所有机器都是刚刚安装好系统(minimal),只配置完网卡和主机名的centos7.7,每个osd增加一块磁盘,/dev/sdb ceph-admin ---- adm ...
- centos6.5kvm虚拟化安装部署
一.走进云计算 云计算:云计算是一种按使用量付费的模式,这种模式提供可用的.便捷的.按需的网络访问, 进入可配置的计算资源共享池(资源包括网络,服务器,存储,应用软件,服务),这些资源能够被快速提供, ...
- centos6.5/centos7安装部署企业内部知识管理社区系统wecenter
企业内部知识系统wecenter社区系统安装及部署 centos 6.5环境安装 因为是公司内部使用在线人数不会太多,使用yum安装lamp环境即可 1.安装lamp基本环境 yum -y insta ...
随机推荐
- 观察者模式模拟YUI事件机制
首先介绍下YUI的事件机制,很好理解,因为和浏览器事件机制差不多.看懂下面几个方法就可以了: publish: 创建自定义事件.第一个参数是事件类型,第二个参数是一个对象,里面可以设置默认动作 on: ...
- Delphi利用Webbrowser登陆QQ群文档
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms ...
- 【the service mysql57 failed the most】
异常信息: the the service mysql57 failed the most recent status change request with the messagethe servi ...
- perl 调用按钮输出到文本框
sub push_b4 { #$txt -> insert('end'); #select $txt; system("expect c:\\\\expect.txt >expe ...
- position:absolute实现垂直居中
一些图标通常要垂直居中 如下所示: 而css中没有直接的样式.需要我们自己调试. 我用了position:absolute;来实现. 要想使得position:absolute;有效,它的父元素必须也 ...
- MongoDB 分片操作
添加分片 use admin //添加分片节点,每个分片都是一个副本集[allowLocal:true仅仅开发时才将分片配置到本地,生产时不能这样] db.runCommand({addshard:& ...
- C errors recods
error: unterminated #ifndef 1,权限问题 2,少了#endif
- Ice_cream’s world III(prime)
Ice_cream’s world III Time Limit : 3000/1000ms (Java/Other) Memory Limit : 32768/32768K (Java/Othe ...
- Codeforces 433 C. Ryouko's Memory Note
C. Ryouko's Memory Note time limit per test 1 second memory limit per test 256 megabytes input stand ...
- JS获取客户端IP地址、MAC和主机名七种方法
一.使用JS获取客户端IP的几个方法方法一(只针对IE且客户端的IE允许AcitiveX运行,通过平台:XP,SERVER03,2000).获取客户端IP代码:<HTML><HEAD ...