安装CloudBoot-云霁科技产品,自动化运维

本文详细介绍了如何在Linux环境下关闭防火墙、安装并配置云启动服务(cloudboot),包括DHCP配置、启动服务及访问控制面板的具体步骤。适用于希望部署云启动环境的系统管理员。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

(官方已经重新开放开源产品)最新参考https://blog.youkuaiyun.com/jsdtwyk/article/details/88698193

文章搬运自:https://www.wanghaiqing.com/article/37439622-7ea2-46c5-a20e-274c5fc49f5f/

关闭防火墙

systemctl status firewalld
systemctl stop firewalld
systemctl disable firewalld
sed -i -e  's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config
sed -i -e  's/^SELINUX=.*/SELINUX=disabled/g' /etc/sysconfig/selinux
setenforce 0

 

安装

wget http://file.wepcc.com/Linux/cloudboot-1.4-1.x86_64.rpm
rpm -ivh cloudboot-1.4-1.x86_64.rpm

 

配置DHCP

cat > /opt/cloudboot/etc/dhcp/dhcpd.conf  << EOF
 
allow booting;
allow bootp;
ddns-update-style none;
ping-check true;
ping-timeout 3;
default-lease-time 120;
max-lease-time 600;
authoritative;
next-server 192.168.245.180;
filename "undionly.kkpxe";
option domain-name "192.168.245.180";
option domain-name-servers 192.168.245.1;
option root-path "192.168.245.180:/";

subnet 192.168.245.0 netmask 255.255.255.0 {
    range 192.168.245.101 192.168.245.200;
    option routers 192.168.245.1;
}

EOF

 

启动

systemctl start cloudboot
chkconfig cloudboot on
systemctl status  cloudboot

 

访问

http://192.168.245.180
用户名:admin
密码  :admin

 

 

修改bootos地址

/opt/cloudboot/var/lib/tftpboot/pxelinux.cfg/default

 

 

在web界面添加位置、网段管理

 

创建虚拟机,启动。在发现新设备里面出现序列号。

 

克隆PXE模板、系统模板,修改ip信息

文档可以参考http://idcos.github.io/osinstall-doc/

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值