当前位置: 首页 > 工具软件 > Nise BOSH > 使用案例 >

nise_bosh搭建cloudfoundry集群时注意的细节

冀望
2023-12-01


以组件的顺序来书写


cloud_controller: 

重新安装cc,要现删除掉/var/vcap/shared,并且卸载掉挂载的目录
先 umount -l /var/vcap/shared
rm -r  /var/vcap/shared
-l 是遇到了无法卸载的情况的时候
必须要删除了之后才能重装

检测是否部署成功:
1.vmc target api.cf.local
2.vmc register
  email 填写(properties.cc.admin)
  password:自己定就可以了
  这个是一个管理员的用户

   如果通不过:
  要修改uaa的配置文件,ssl:false(这个一般是不用修改的)
   cc的配置文件(/var/vcap/jobs/cc/config/cc.yml),https->http
   如果出现了segmentation fault;我们选择的处理方式是忽略掉
3. vmc login
4.vmc users 可以查看用户
5.到要上传的应用文件夹下面 执行 vmc push
命名
vmc apps是查看你部署的应用

health_monitor:

修改bosh-release/src/bosh/health_monitor/lib/health_monitor/runner.rb
注释掉 setup_timers

# TODO no need to pure director in nise_BOSH
        # setup_timers


 类似资料: