cloudfoundry warden安装和配置

简介:
cloudfoundry warden安装和配置
 
warden安装
 
apt-get install -y linux-image
apt-get install -y build-essential debootstrap
apt-get install -y cgroup-bin

gem install bundle
gem sources -a http://ruby.taobao.org/
gem sources --remove http://rubygems.org/
gem install gem-fast

cd  warden/warden
bundle
bundle exec rake setup[config/linux.yml]

在上述配置过程中,rake setup会通过下面的命令在/tmp/warden/rootfs/目录下安装一个基本系统,并作一些简单配置(具体的脚本为root/linux/base/setup.sh)
 
packages="openssh-server,rsync"
suite="precise"
mirror=$(grep "^deb" /etc/apt/sources.list | head -n1 | cut -d" " -f2)
target="/tmp/warden/rootfs/"
$(which debootstrap) --verbose --include $packages $suite $target $mirror
 
 
配置容器的默认密码
 
chroot /tmp/warden/rootfs/
passwd设置密码
新建vcap用户并设置密码
 
     这两个密码会在create容器的时候用到,也可以用于登陆容器
 
{"timestamp":1348730196.9785028,"message":"Wrote bind mount commands","log_level":"debug2","source":"Warden::Container::Linux","data":{"handle":"16al6hojp15"},"thread_id":19912820,"fiber_id":26904200,"process_id":12879,"file":"/usr/src/warden/warden/lib/warden/container/linux.rb","lineno":81,"method":"do_create"}
{"timestamp":1348730196.9787943,"message":"Wrote /etc/security/limits.conf","log_level":"debug2","source":"Warden::Container::Linux","data":{"handle":"16al6hojp15"},"thread_id":19912820,"fiber_id":26904200,"process_id":12879,"file":"/usr/src/warden/warden/lib/warden/container/linux.rb","lineno":84,"method":"do_create"}
root@10.254.0.18's password:     [此处输入密码]
vcap@10.254.0.18's password:     [此处输入密码]
 
启动warden:

    bundle exec rake warden:start[config/linux.yml]

与Warden交互:

    bundle exec bin/warden-repl
     键入create后就可以创建一个容器了
 
在创建容器时候可以传入一个grace_time参数,如果不传的话,默认5分钟没有客户连接容器就会自动删除:

If specified, this setting overrides the default time of a container not
being referenced by any client until it is destroyed. The value can
either be the number of seconds as floating point number or integer, or

the `null` value to completely disable the grace time.


本文转自feisky博客园博客,原文链接:http://www.cnblogs.com/feisky/archive/2012/09/27/2706114.html,如需转载请自行联系原作者


相关文章
|
2月前
|
存储 API 文件存储
【Azure 云服务】如何从Azure Cloud Service中获取项目的部署文件
【Azure 云服务】如何从Azure Cloud Service中获取项目的部署文件
|
5月前
|
存储 网络虚拟化 数据安全/隐私保护
如何在最新版的HCL 5.10.0中导入NFV镜像?
如何在最新版的HCL 5.10.0中导入NFV镜像?
|
Ubuntu 网络协议 Linux
windows10离线安装docker并使用linux子系统部署nacos作为注册中心(上)
windows10离线安装docker并使用linux子系统部署nacos作为注册中心
814 0
windows10离线安装docker并使用linux子系统部署nacos作为注册中心(上)
|
SQL 关系型数据库 MySQL
windows10离线安装docker并使用linux子系统部署nacos作为注册中心(下)
windows10离线安装docker并使用linux子系统部署nacos作为注册中心
286 0
windows10离线安装docker并使用linux子系统部署nacos作为注册中心(下)
wildfly 21中应用程序的部署
wildfly 21中应用程序的部署
如何在SAP云平台的Cloud Foundry环境下添加新的Service(服务)
如何在SAP云平台的Cloud Foundry环境下添加新的Service(服务)
101 0
如何在SAP云平台的Cloud Foundry环境下添加新的Service(服务)
Netweaver和CloudFoundry的服务器日志
Netweaver和CloudFoundry的服务器日志
Netweaver和CloudFoundry的服务器日志
|
资源调度 Java Windows
JHipster开发环境安装
本文介绍如何在CentOS 7.4上安装Jhipster的开发环境。
2015 0