一体机cell服务器更换内存步骤
一体机cell服务器更换内存步骤:
#1、确认grdidisk状态
cellcli -e list griddisk attribute name,asmmodestatus,asmdeactivationoutcome
#2、offline griddisk
cellcli -e alter griddisk all inactive
#3、确认全部offline后进行关机操作
shutdown -h now
#4、开盖更换内存条,*螺丝刀

按主板蓝色按钮确认坏的内存条

#5、开机,时间较长会自动重启一次,等待两次启动
#6、确认griddisk状态
cellcli -e list griddisk attribute name,asmmodestatus,asmdeactivationoutcome
#7、online griddisk
cellcli -e alter griddisk all active
#8、等待syncing为online即可
#9、确认ilom显示以及ilom输出
相关参考:
Steps to shut down or reboot an Exadata storage cell without affecting ASM (Doc ID 1188080.1)
Oracle Exadata Storage Server Software - Version 11.2.1.2.0 and later
Linux x86-64
GOAL
To provide steps to power down or reboot an Exadata Storage cell without affecting ASM.
SOLUTION
Steps to power down or reboot a cell without affecting ASM:
When performing maintenance on Exadata Cells, it may be necessary to power down or reboot the cell. If a storage server is to be shut down when one or more databases are running, then verify that taking the storage server offline will not impact Oracle ASM disk group and database availability. The ability to take Oracle Exadata Storage Server offline without affecting database availability depends on the level of Oracle ASM redundancy used on the affected disk groups, and the current status of disks in other Oracle Exadata Storage Servers that have mirror copies of data as Oracle Exadata Storage Server to be taken offline.
=====================================================================================================================================================
1) By default, ASM drops a disk shortly after it is taken offline; however, you can set the DISK_REPAIR_TIME attribute to prevent this operation by specifying a time interval to repair the disk and bring it back online. The default DISK_REPAIR_TIME attribute value of 3.6h should be adequate for most environments.
(a) To check repair times for all mounted disk groups - log into the ASM instance and perform the following query:(b) If you need to offline the ASM disks for more than the default time of 3.6 hours then adjust the parameter by issuing the command below as an example:SQL> select dg.name,a.value from v$asm_diskgroup
dg, v$asm_attribute a where dg.group_number=a.group_number and
a.name='disk_repair_time';
SQL> ALTER DISKGROUP DATA SET ATTRIBUTE 'DISK_REPAIR_TIME'='8.5H';
Note : As of version 12.1.0.1, there is a new diskgroup attribute, failgroup_repair_time, that governs the time a cell is allowed to be offline before its disks are dropped. This value defaults to 24 hours thus obviating the need to alter the disk_repair_time attribute as in older versions.
2) Next you will need to check if ASM will be OK if the grid disks go OFFLINE. The following command should return 'Yes' for the grid disks being listed:
cellcli -e list griddisk attributes name,asmmodestatus,asmdeactivationoutcome
3) If one or more disks does not return asmdeactivationoutcome='Yes', you should check the respective diskgroup and restore the data redundancy for that diskgroup.
Once the diskgroup data redundancy is fully restored, repeat the previous command (step #2).
Once all disks return asmdeactivationoutcome='Yes', you can proceed with taking the griddisk offline (step #4).
Note: Shutting down the cell services when one or more grid disks does not return asmdeactivationoutcome='Yes' will cause Oracle ASM to dismount the affected disk group, causing the databases to shut down abruptly.
4) Run cellcli command to Inactivate all grid disks on the cell you wish to power down/reboot:
cellcli -e alter griddisk all inactive
* Please note - This action could take 10 minutes or longer depending on activity. It is very important to make sure you were able to offline all the disks successfully before shutting down the cell services. Inactivating the grid disks will automatically OFFLINE the disks in the ASM instance.
5) Confirm that the griddisks are now offline by performing the following actions:
(a) Execute the command below and the output should show either asmmodestatus=OFFLINE or asmmodestatus=UNUSED and asmdeactivationoutcome=Yes for all griddisks once the disks are offline in ASM. Only then is it safe to proceed with shutting down or restarting the cell:cellcli -e list griddisk attributes name,asmmodestatus,asmdeactivationoutcome
( there has also been a reported case of asmmodestatus= OFFLINE: Means Oracle ASM has taken this grid disk offline. This status is also fine and can proceed with remaining instructions)
(b) List the griddisks to confirm all now show inactive:cellcli -e list griddisk
6) You can now reboot the cell. Oracle Exadata Storage Servers are powered off and rebooted using the Linux shutdown command.
(a) The following command will shut down Oracle Exadata Storage Server immediately: (as root):#shutdown -h now
(When powering off Oracle Exadata Storage Servers, all storage services are automatically stopped.)
(b) The following command will reboot Oracle Exadata Storage Server immediately and force fsck on reboot:#shutdown -F -r now
7) Once the cell comes back online - you will need to reactive the griddisks:
cellcli -e alter griddisk all active
8) Issue the command below and all disks should show 'active':
cellcli -e list griddisk
9) Verify grid disk status:
(a) Verify all grid disks have been successfully put online using the following command:cellcli -e list griddisk attributes name, asmmodestatus
(b) Wait until asmmodestatus is ONLINE for all grid disks. Each disk will go to a 'SYNCING' state first then 'ONLINE'. The following is an example of the output:DATA_CD_00_xxxcel01 ONLINE
DATA_CD_01_xxxcel01 SYNCING
DATA_CD_02_xxxcel01 OFFLINE
DATA_CD_03_xxxcel01 OFFLINE
DATA_CD_04_xxxcel01 OFFLINE
DATA_CD_05_xxxcel01 OFFLINE
DATA_CD_06_xxxcel01 OFFLINE
DATA_CD_07_xxxcel01 OFFLINE
DATA_CD_08_xxxcel01 OFFLINE
DATA_CD_09_xxxcel01 OFFLINE
DATA_CD_10_xxxcel01 OFFLINE
DATA_CD_11_xxxcel01 OFFLINE
(c) Oracle ASM synchronization is only complete when all grid disks show asmmodestatus=ONLINE.
ASM rebalance phase will start automatically after disk resync phase completes if using GI version 12.1 or higher.
( Please note: this operation uses Fast Mirror Resync operation - which does not trigger an ASM rebalance if using GI version < 12.1. The Resync operation restores only the extents that would have been written while the disk was offline.)
10) Before taking another storage server offline, Oracle ASM synchronization must complete on the restarted Oracle Exadata Storage Server. If synchronization is not complete, then the check performed on another storage server will fail. The following is an example of the output:
CellCLI> list griddisk attributes name where asmdeactivationoutcome != 'Yes'
DATA_CD_00_xxxcel02 "Cannot de-activate due to other offline disks in the diskgroup"
DATA_CD_01_xxxcel02 "Cannot de-activate due to other offline disks in the diskgroup"
DATA_CD_02_xxxcel02 "Cannot de-activate due to other offline disks in the diskgroup"
DATA_CD_03_xxxcel02 "Cannot de-activate due to other offline disks in the diskgroup"
DATA_CD_04_xxxcel02 "Cannot de-activate due to other offline disks in the diskgroup"
DATA_CD_05_xxxcel02 "Cannot de-activate due to other offline disks in the diskgroup"
DATA_CD_06_xxxcel02 "Cannot de-activate due to other offline disks in the diskgroup"
DATA_CD_07_xxxcel02 "Cannot de-activate due to other offline disks in the diskgroup"
DATA_CD_08_xxxcel02 "Cannot de-activate due to other offline disks in the diskgroup"
DATA_CD_09_xxxcel02 "Cannot de-activate due to other offline disks in the diskgroup"
DATA_CD_10_xxxcel02 "Cannot de-activate due to other offline disks in the diskgroup"
DATA_CD_11_xxxcel02 "Cannot de-activate due to other offline disks in the diskgroup"
Celldisk and Griddisk are Not Created Automatically on Oracle Full Rack Exadata Cell Node | bigdba.com
https://support.oracle.com/epmos/faces/DocumentDisplay?_afrLoop=284381185740982&parent=DOCUMENT&sourceId=1312266.1&id=1188080.1&_afrWindowMode=0&_adf.ctrl-state=4dhcgml3_53
相关文章:
一体机cell服务器更换内存步骤
一体机cell服务器更换内存步骤: #1、确认grdidisk状态 cellcli -e list griddisk attribute name,asmmodestatus,asmdeactivationoutcome #2、offline griddisk cellcli -e alter griddisk all inactive #3、确认全部offline后进行关机操作 shutdown -h now #4、开…...
Hadoop•用Web UI查看Hadoop状态词频统计
听说这里是目录哦 通过Web UI查看Hadoop运行状态🐇一、关闭防火墙二、在物理计算机添加集群的IP映射三、启动集群四、进入HDFS的Web UI 词频统计🦩1、准备文本数据2、在HDFS创建目录3、上传文件4、查看文件是否上传成功5、运行MapReduce程序6、查看MapRe…...
rhel7.9利用有网络环境打包ansible
RHEL7.9激活(可省略) # 注册 subscription-manager register --usernameyour_username --passwordyour_password --auto-attach # 查看订阅状态 subscription-manager list # 将 “enabled1” 改为 “enabled0” vi /etc/yum/pluginconf.d/subscription-manager.conf 配置阿…...
vim文本编辑器三种模式的转换关系
输入模式 ———— 末行模式 输入模式和末行模式不能相互转换。 输入模式 ———— 命令模式 输入模式可以通过点击esc进入命令模式。 命令模式可以通过点击i进入输入模式。 末行模式 ———— 命令模式 末行模式可以通过点击esc进入命令模式。 命令模式可以通过shift&…...
深度学习:大模型Decoding+MindSpore NLP分布式推理详解
大模型推理流程 1. 用户输入提示词(Prompt) 假设用户输入为:“从前,有一只小猫,它喜欢……” 我们的目标是让模型生成一段完整的故事。 2. 模型处理用户输入 2.1 分词:输入提示被分词为模型可以理解的…...
【JVM中的三色标记法是什么?】
JVM中的三色标记法是什么? 一、基本概念二、标记过程三、优势与问题四、漏标与多标的解决方案三色标记法(Tri-color Marking Algorithm)是Java虚拟机(JVM)中一种用于追踪对象存活状态的垃圾回收算法。 它基于William D. Hana和Mark S. McCulleghan在1976年提出的两色标记法…...
数据库服务体系结构
1. 数据库服务应用配置 服务进行配置有什么作用? 实现服务运行启动 实现某些功能 应用配置有三种方式? 利用编译安装进行配置 编写配置文件信息 ,.默认的配置文件: /etc/my.cnf 利用启动命令参数配置信息,mysqld_safe --skip-grant-tables --…...
vscode项目依赖问题
必读 一定要将前端下拉的项目备份一下,很容易运行导致依赖报错,重新下载 命令 使用幽灵分解器安装 pnpm install 替代 npm install 设置淘宝NPM镜像源 yarn config set registry https://registry.npmmirror.com 查看目前依赖包的版本 npm list ant-d…...
R数据分析:有调节的中介与有中介的调节的整体介绍
单独的有调节的中介或者有中介的调节好多同学还大概能看明白,但是两个东西一起说我发现大部分同学就懵逼了。今天我就尝试将两种方法一起讲讲,重点帮助大家厘清两种方法的异同。 先从整体上看下两者的概念: 有中介的调节首先落脚在调节,调节作用必须是显著的,并且这个调…...
RabbitMQ-消息可靠性以及延迟消息
目录 消息丢失 一、发送者的可靠性 1.1 生产者重试机制 1.2 生产者确认机制 1.3 实现生产者确认 (1)开启生产者确认 (2)定义ReturnCallback (3)定义ConfirmCallback 二、MQ的持久化 2.1 数据持久…...
Hack The Box-Starting Point系列Oopsie
一. 答案 With what kind of tool can intercept web traffic? (什么样的工具可以拦截Web流量?) proxyWhat is the path to the directory on the webserver that returns a login page?(Web服务器上返回登录页面的目录路径是什么?) /cdn-cgi/loginWhat can be modified …...
Linux运维篇-PAM安全模块配置
PAM是什么? PAM(可插入认证模块)是UNIX操作系统上一个实现模块化的身份验证的服务。当程序需要对用户进行身份验证时加载并执行。PAM文件通常位于/etc/pam.d目录中。 而Linux-PAM,是linux可插拔认证模块,是一套可定制…...
麒麟V10系统上安装Oracle
以下是在麒麟V10系统上安装Oracle数据库的详细步骤: 安装前准备 检查系统版本:使用uname -a、cat /etc/os-release等命令检查服务器是麒麟V10系统。 配置固定IP和本地yum源: 挂载麒麟V10的iso文件到/mnt目录,如mount -o loop Ky…...
项目开发实践——基于SpringBoot+Vue3实现的在线考试系统(七)
文章目录 一、题库管理模块实现1、新增题目功能实现1.1 页面设计1.2 前端功能实现1.3 后端功能实现1.4 效果展示2、题目列表功能实现2.1 页面设计2.2 前端功能实现2.3 后端功能实现2.3.1 后端查询题目列表接口实现2.3.2 后端编辑试题接口实现2.4 效果展示二、代码下载一、题库管…...
Elasticsearch:Jira 连接器教程第二部分 - 6 个优化技巧
作者:来自 Elastic Gustavo Llermaly 将 Jira 连接到 Elasticsearch 后,我们现在将回顾最佳实践以升级此部署。 在本系列的第一部分中,我们配置了 Jira 连接器并将对象索引到 Elasticsearch 中。在第二部分中,我们将回顾一些最佳实…...
Vulnhub Earth靶机攻击实战(一)
导语 首先需要我们进入到https://vulnhub.com/entry/the-planets-earth,755/地址去获取Earth靶机,然后导入到VMware中,如下所示。 文章目录 导入虚拟机信息收集路径扫描破解密码反射Shell提权总结导入虚拟机 下载并导入虚拟机,如下所示。 信息收集 首先我们通过arp-sc…...
51单片机——DS18B20温度传感器
由于DS18B20数字温度传感器是单总线接口,所以需要使用51单片机的一个IO口模拟单总线时序与DS18B20通信,将检测的环境温度读取出来 1、DS18B20模块电路 传感器接口的单总线管脚接至单片机P3.7IO口上 2、DS18B20介绍 2.1 DS18B20外观实物图 管脚1为GN…...
HTML5+Canvas实现的鼠标跟随自定义发光线条源码
源码介绍 HTML5Canvas实现的鼠标跟随自定义发光线条特效源码非常炫酷,在黑色的背景中,鼠标滑过即产生彩色变换的发光线条效果,且线条周围散发出火花飞射四溅的粒子光点特效。 效果预览 源码如下 <!DOCTYPE html PUBLIC "-//W3C//D…...
关于jwt和security
JSON Web Token(缩写 JWT) 目前最流行、最常见的跨域认证解决方案,前端后端都需要会使用的东西-腾讯云开发者社区-腾讯云 SpringBoot整合Security安全框架、控制权限让我们一起来看看Security吧!我想每个写项目的人,都…...
统计学习算法——逻辑斯谛回归
内容来自B站Up主:动画讲编程https://www.bilibili.com/video/BV1CR4y1L7RC、风中摇曳的小萝卜https://www.bilibili.com/video/BV17r4y137bW,仅为个人学习所用。 极大似然估计 几率、概率与似然 几率是指某个事件发生的可能性与不发生的可能性之比&am…...
HCIA综合实验报告
一、实验要求1.所有PC均需要通过DHCP获取IP地址-地址池名称和设备VLAN一致,例如PC1-ip pool vlan10,其中只有业务B网络用户需要访问互联网web服务-需要DNS信息。2.交换机配置VLAN需要遵循最小VLAN透传原则3.利用OSPF协议使内外用户互相访问-全网可达(设备…...
Qwen3-14B部署教程:JupyterLab集成环境与交互式推理演示
Qwen3-14B部署教程:JupyterLab集成环境与交互式推理演示 1. 开箱即用的私有部署方案 Qwen3-14B作为通义千问系列的最新大语言模型,在14B参数规模下展现出惊人的多轮对话和复杂推理能力。今天我们要介绍的是一个专为RTX 4090D 24GB显存优化的私有部署镜…...
Omni-Vision Sanctuary C 语言接口调用指南:高性能嵌入式边缘部署
Omni-Vision Sanctuary C 语言接口调用指南:高性能嵌入式边缘部署 1. 引言 如果你是一名嵌入式开发者,正在寻找将计算机视觉模型部署到边缘设备的方法,那么这篇文章就是为你准备的。我们将手把手教你如何为Omni-Vision Sanctuary模型封装C语…...
Qwen3.5-4B模型推理效果展示:复杂逻辑问题与代码生成案例
Qwen3.5-4B模型推理效果展示:复杂逻辑问题与代码生成案例 1. 开篇:当AI遇上复杂逻辑 最近测试了一款名为Qwen3.5-4B的模型,它在处理复杂逻辑和代码生成方面的表现着实让人眼前一亮。不同于常见的对话模型,这个经过蒸馏和强化训练…...
Qwen3-14B私有部署镜像MobaXterm远程连接指南:安全访问GPU服务器模型
Qwen3-14B私有部署镜像MobaXterm远程连接指南:安全访问GPU服务器模型 1. 前言:为什么选择MobaXterm 如果你正在管理一台部署了Qwen3-14B模型的GPU服务器,远程连接工具的选择就变得尤为重要。MobaXterm作为一款集成了SSH、SFTP、X11等多种功…...
基于Qwen3-ASR-1.7B的智能录音笔方案:离线语音转写实现
基于Qwen3-ASR-1.7B的智能录音笔方案:离线语音转写实现 语音转写技术正逐步从云端走向终端,Qwen3-ASR-1.7B为嵌入式设备提供了本地化语音识别的可能性 1. 方案设计思路 传统的录音笔只能记录音频,后期需要导入电脑并通过联网服务才能转换成文…...
用 Laravel AI SDK 构建多智能体工作流计
1.安装环境准备 1.1.查看物理内存 [rootaiserver ~]# free -m 1.2.操作系统版本 [rootaiserver ~]# cat /etc/redhat-release 1.3.操作系统内存 [rootaiserver ~]# df -h /dev/shm/ 1.4.磁盘空间 [rootaiserver ~]# df -TH [rootaiserver ~]# df -h /tmp/ [rootaiserver ~]# d…...
SenseVoice-Small ONNX酿酒工艺:发酵语音→糖度+温度+时间结构化记录
SenseVoice-Small ONNX酿酒工艺:发酵语音→糖度温度时间结构化记录 1. 引言:从“听不清”到“记得清”的酿造革命 想象一下,你是一位酿酒师,正站在发酵车间里。耳边是发酵罐低沉的嗡鸣,空气里弥漫着谷物和酵母的混合…...
千问 LeetCode 1359.有效的快递序列数目 public int countOrders(int n)
这道题要求计算 n 个订单所有有效的收件/配送序列数目,其中每个订单的配送(Delivery)必须在其收件(Pickup)之后。这是一个经典的组合数学问题,可以通过递推的方法来解决。💡 解题思路我们可以从…...
新手别怕!用嘉立创EDA两层板搞定ESP8266最小系统PCB(附完整工程文件)
从零开始:用嘉立创EDA轻松打造ESP8266最小系统PCB 第一次打开PCB设计软件时,那种手足无措的感觉我至今记忆犹新。密密麻麻的元件符号、复杂的布线规则、各种专业术语...作为一个刚接触硬件的爱好者,我曾一度怀疑自己是否真的能独立完成一块电…...
