摘要: 1 什么是IPMI IPMI是智能平台管理接口(Intelligent Platform Management Interface)原本是一种Intel架构的企业系统的周边设备所采用的一种工业标准。 简单的说就是将配置好IP的IPMI口接入交换机,你就可以通过电脑远程来管理服务器的一个接口 2 准备 阅读全文
posted @ 2020-06-30 15:47 谈_指之间 阅读(6130) 评论(0) 推荐(0) 编辑
摘要: DELL服务器硬RAID的制作 1. 进入RAID管理界面 服务器开机,看到Press Ctrl-C to start Dell 6Gbps SAS Ctlr Configuration Utility,因服务器型号不同按键略有差别,主要看到关键字SAS Ctlr Configuration Uti 阅读全文
posted @ 2020-06-30 15:43 谈_指之间 阅读(625) 评论(0) 推荐(0) 编辑
摘要: 一、 控制节点监测脚本 #! /bin/bash #分界线函数 b (){ echo -e "\033[31m \033[0m" } read -p "请输入需要检测的网卡名:" ma while : do clear ip=`ifconfig $ma | awk '/inet /{print $2 阅读全文
posted @ 2020-05-23 16:47 谈_指之间 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 控制节点(网卡名称,服务数量不尽相同,自行择决之): #!/bin/bash#分界线函数b (){ echo -e "\033[31m \033[0m" sleep 1}#检查网络ping -c 3 -i 0.2 -W 1 www.g.cn &> /dev/null[ $? -ne 0 ] && e 阅读全文
posted @ 2020-05-13 10:06 谈_指之间 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 步骤一:安装rpm-build软件 1)安装rpm-build软件包 [root@root ~]# yum -y install rpm-build 2)生成rpmbuild目录结构 [root@root ~]# rpmbuild -ba nginx.spec //会报错,没有文件或目录 [root 阅读全文
posted @ 2020-05-13 09:59 谈_指之间 阅读(576) 评论(0) 推荐(0) 编辑
摘要: OpenStack安装指南 配置时间同步服务(NTP) Controller node 安装并配置chrony [root@controller ~]# yum install chrony -y [root@controller ~]# sed -i '26a allow 10.0.0.0/24' 阅读全文
posted @ 2020-03-21 16:07 谈_指之间 阅读(634) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bashwhile :douptime |awk '{print "CPU",$6,$7,$8,$9,$10}'free -h |awk '/^Mem/{print "free Memory:"$4}'df -h |awk '/\/$/{print "free Disk:"$4}'aw 阅读全文
posted @ 2020-03-17 20:13 谈_指之间 阅读(222) 评论(0) 推荐(0) 编辑
摘要: Centos7安装完成后克隆其他子节点 首先在VMware中:右击 虚拟机controller-->设置-->添加-->网络适配器,然后做如下设置: 在VMware中操作 点击:克隆-->下一步-->虚拟机中的当前状态-->创建完整克隆-->下一步(克隆controller、compuet、stor 阅读全文
posted @ 2020-03-17 19:54 谈_指之间 阅读(1605) 评论(0) 推荐(0) 编辑
摘要: 下面脚本可以直接复制来配置openstack-ocata版的yum源: echo "nameserver 8.8.8.8 nameserver 119.29.29.29 nameserver 114.114.114.114" > /etc/resolv.conf cd /etc/yum.repos. 阅读全文
posted @ 2020-02-17 14:39 谈_指之间 阅读(811) 评论(0) 推荐(0) 编辑
摘要: 真的是几经周折,终于配置好了!我做好了一键配置yum的代码,地址:https://www.cnblogs.com/guarding/p/12321702.html 首先看一下配置前的报错信息把: 需要安装以下安装包(根据openstack-ocata的官方文档:https://docs.openst 阅读全文
posted @ 2020-02-17 14:09 谈_指之间 阅读(4076) 评论(0) 推荐(2) 编辑