Linux随记(十一)

一、nginx启动报错libssl.so.10: cannot open shared object file 和 libcrypto.so.10: cannot open shared object file

系统环境:bclinix euler 21.10
nginx是直接解压后的“产物” 。并没有经过 ./configure、make 、make install的操作 。
网上说yum install openssl-compat就可,但是这个euler 21.10并没有。

# 报错1
./nginx: error while loading shared libraries: libssl.so.10: cannot open shared object file: No such file or directory

#处理方法:
在别的机器搜索libssl.so.10 , 然后上传到/usr/lib64/文件夹下。
[root@master ~]# find / -name "*libssl.so.10*"
/usr/lib64/libssl.so.10


#### 报错2
[idmp@gxyd-bdata10 sbin]$ ./nginx -t
./nginx: error while loading shared libraries: libcrypto.so.10: cannot open shared object file: No such file or directory 

#处理方法:
在别的机器搜索libcrypto.so.10 , 发现它是个软连接。
[root@master ~]# ll /usr/lib64/libcrypto.so.10
lrwxrwxrwx 1 root root 19 Aug  9  2019 /usr/lib64/libcrypto.so.10 -> libcrypto.so.1.0.2k

#将 libcrypto.so.1.0.2k文件上传到/usr/lib64/ ,然后做软连接
cd /usr/lib64/
ln -sf    libcrypto.so.1.0.2k  libcrypto.so.10

二、bclinux euler 21.10 部署docker与docker-compose【bclinux 离线部署docker】

系统环境:bcLinux For Euler 21.10 LTS
要求部署Docker version 19.03.14 和 docker-compose version 1.29.2

部署docker

#root用户操作  #部署docker服务
wget https://download.docker.com/linux/static/stable/x86_64/docker-19.03.14.tgz
tar zxf docker-19.03.14.tgz
sudo cp docker/* /usr/bin/

#systemctl注册服务
vi /usr/lib/systemd/system/docker.service
[Unit]
Description=Docker Application Container Engine
Documentation=https://docs.docker.com
After=network-online.target firewalld.service
Wants=network-online.target
 
[Service]
Type=notify
ExecStart=/usr/bin/dockerd
ExecReload=/bin/kill -s HUP $MAINPID
LimitNOFILE=infinity
LimitNPROC=infinity
TimeoutStartSec=0
Delegate=yes
KillMode=process
Restart=on-failure
StartLimitBurst=3
StartLimitInterval=60s
 
[Install]
WantedBy=multi-user.target

###### 修改docker存储位置
mkdir -p /DATA/docker
mv /var/lib/docker /var/lib/docker.bak

mkdir -p /etc/docker/
vim /etc/docker/daemon.json
{
   "exec-opts": ["native.cgroupdriver=systemd"],
   "insecure-registries": [
      "10.xx.xx.xx:7000"
   ],
   "log-driver": "json-file",
   "log-opts": {
      "max-size": "100m"
   },
   "storage-driver": "overlay2",
   "data-root": "/DATA/docker"
}

######
systemctl start docker
systemctl enable docker
docker info | grep 'Docker Root Dir'

部署docker-compose

wget https://github.com/docker/compose/releases/download/1.29.2/docker-compose-Linux-x86_64
mv  docker-compose-Linux-x86_64  docker-compose
sudo chmod +x docker-compose
cp docker-compose /usr/local/bin
docker-compose --version

三、清理要求:/data1/ ~ /data19/ 下的内容都清理。 但 lost+found 文件夹不清理。

在这里插入图片描述

#操作:
 find /data{1..19} -mindepth 1 -maxdepth 1  -not -name 'lost+found' -exec rm -rf  {} \;

四、native认证 - java jar包优化建议操作:

一、建议设置 -Xmx、-Xms
1、当前-Xms和-Xmx参数设置不等,为了避免在生产环境中由于堆内存扩大或缩小导致应用停顿、延迟降低,同时避免每次垃圾回收完成后JVM重新分配内存。所以。建议-Xmx和-Xms设置相等。
2、可以使用-XX:+ AlwaysPreTouch来预分配所有的内存,把延迟提前到虚拟机启动阶段。
#
二、建议开启 -XX:+HeapDumpOnOutOfMemoryError
当堆内存空间溢出时会保存堆的内存快照,以便定位问题。
参数示例: -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath= <文件路径>
#
三、建议开启GC日志输出
输出GC日志有助于定位系统性能问题,建议开启对应设置,同时建议开启滚动日志。
参数示例:
-XX:+PrintGCDetails -XX:+PrintGCDateStamps -Xloggc:<文件路径>
-XXx:+UseGCLogFlRotation -XX:NumberOfGCLogFiles= <日志数量> -XX:GCLogFileSize=<日志大小>

cd /data/codeFile
kill -9 $(pgrep -f 5G)

nohup java -jar -Xmx128M -Xms128M -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/tmp/oom.log \
 -XX:+PrintGCDetails -Xloggc:/tmp/gc.log  -XX:+PrintGCDateStamps -XX:+PrintHeapAtGC \
 -XX:NumberOfGCLogFiles=5 -XX:GCLogFileSize=20M \
5G.jar &

五、处理1.138 ping不通 Destination Host Unreachable - 随记

问题情况:1.138莫名出现宕机,当修复好后,发现ssh 1.138不通。( ping之后出现Destination Host Unreachable)
通过kvm登录,处理1.138 ping不通问题:

(IP配置没问题的)

已用的排查方法:

0、执行sshd -t  , systemctl restart sshd 。发现服务正常和22端口在的。
1、登录同段的1.139。 ssh / telnet / ping / tracepath / traceroute 138 都不通

2、查看selinux 、iptables 、firewalld 服务。 发现均已关闭。
3、查看ifcfg-bond0配置(正确的),  route -n查看网关,138能自己ping通自己,但是ping不通网关,他也ping不通139。

4、查看网卡模式 (之前做过 “轮询” 改成“主备”模式) (这里也是正常的)
#查看当前网卡
cat /proc/net/bonding/bond0

#修改网卡模式
cd /etc/sysconfig/network-scripts
vi ifcfg-band0
将 BONDING_OPTS="mode=0 miimon=100" 改为 BONDING_OPTS="mode=1 miimon=100"

#或者:
sudo nmcli con mod bond0 mode 1  &&  sudo nmcli con up bond0 
cat /proc/net/bonding/bond0

5、systemctl status NetworkManager (正常运行的)

### 最终处理方法:
重启服务器 (还是没找到,故障原因在哪喔。。。)

之前对Destination Host Unreachable 的认知是: ping一个不存在的ip就会出现  Destination Host Unreachable 。 但这次ping 存在的ip也出现 Destination Host Unreachable 。

六、 tar 和 --exclude 随记。 每月备份运行程序文件,ftp传输文件到备份服务器demo

tar的写法测试:
写法1

####
]$ tree .
.
└── file
    ├── a
    │   ├── 1.txt
    │   ├── 2.txt
    │   └── 3.txt
    └── b
        ├── 4.txt
        ├── 5.txt
        └── 6.txt


### 写法1
# ok
tar --exclude file/a -zcvf file.tar.gz file


#写法1 执行过程:
t]$ tar --exclude file/a -zcvf file.tar.gz file
file/
file/b/
file/b/6.txt
file/b/5.txt
file/b/4.txt

写法2

### 写法2
#报错: 此时会生成 “ --exclude” 文件
 tar -zcvf  --exclude file/a  file.tar.gz file
 
[  test]$  tar -zcvf  --exclude file/a  file.tar.gz file
file/a/
file/a/3.txt
file/a/2.txt
file/a/1.txt
tar: file.tar.gz: Cannot stat: No such file or directory
file/
file/b/
file/b/6.txt
file/b/5.txt
file/b/4.txt
file/a/
file/a/3.txt
file/a/2.txt
file/a/1.txt
tar: Exiting with failure status due to previous errors
[  test]$ ll
total 4.0K
-rw-r----- 1 xx1 xx1 267 Oct 10 16:55 --exclude
drwxr-x--- 4 xx1 xx1  80 Oct 10 16:52 file

写法3

### 写法3
### ok
#
]$  tar -zcvf    file.tar.gz  --exclude file/a  file
file/
file/b/
file/b/6.txt
file/b/5.txt
file/b/4.txt

写法4

### 写法4
###  报错 。 会生成file.tar.gz ,但他是全部都压缩进去了。 (tar: --exclude ‘file/a’ has no effect)
tar -zcvf    file.tar.gz   file   --exclude file/a

[  test]$ tar -zcvf    file.tar.gz   file   --exclude file/a
file/
file/b/
file/b/6.txt
file/b/5.txt
file/b/4.txt
file/a/
file/a/3.txt
file/a/2.txt
file/a/1.txt
tar: The following options were used after any non-optional arguments in archive create or update mode.  These options are positional and affect only arguments that follow them.  Please, rearrange them properly.
tar: --exclude ‘file/a’ has no effect
tar: Exiting with failure status due to previous errors
[  test]$ 
[  test]$ ll
total 4.0K
drwxr-x--- 4 xx1 xx1  80 Oct 10 16:52 file
-rw-r----- 1 xx1 xx1 222 Oct 10 16:59 file.tar.gz

备份脚本(每月执行一次备份,推送到备份服务器):

#!/bin/bash

backuptime=`date +%Y%m`
#ip_file=`ifconfig | grep 'inet addr:' | awk '{print $2}' | awk -F: '{print $2}' | awk 'NR==1'`
ip_file=10.xx.xx.xx

####´´½¨Ŀ¼
mkdir -p /data/backup/${backuptime}
backup_data=/data/backup/${backuptime}
##### 备份举例:
cd /data/xx_download/
tar -czvf ${backup_data}/ftp-download_xx.tar.gz  --exclude=ftp-download_xx/logs  ftp-download_xx


cd /xx/apps/tools-etl/
tar -czvf ${backup_data}/db2db_xx.tar.gz  --exclude=db2db_xx/logs --exclude=db2db_xx/data  db2db_xx

cd /data/xxparse/
tar -czvf ${backup_data}/fpf-xml2db-lte-xx.tar.gz  --exclude=fpf-xml2db-lte-xx/logs --exclude=fpf-xml2db-lte-xx/data fpf-xml2db-lte-xx

cd ${backup_data}
tar -cvzf ${backup_data}/${backuptime}.tar.gz ./*
ls | grep -v ${backuptime}.tar.gz | xargs rm -rf

### 备份服务器信息
ftp_ip='10.xx.xx.xx'
ftp_user='ftpuser'
ftp_pass='xxx'
ftp_root_dir='/BAK_DATA'

ftp -n ${ftp_ip}<<END
user ${ftp_user} ${ftp_pass}
binary
prompt
passive
cd ${ftp_root_dir}
mkdir  ${backuptime}
cd ${backuptime}
mkdir  ${ip_file}
cd ${ip_file}
put ${backuptime}.tar.gz
bey
END
rm -rf ${backuptime}.tar.gz

七、系统出现 Read-only file system 故障。(原因是阵列卡烧了)

环境信息: (xx 二楼机房 K02柜23-24U) 大概10年前服务器,之前将操作系统 redhat 6换成euler 21.10.
故障现象:
在这里插入图片描述

排查过程: 执行下面,都不对头:

# 1
mount -o rw,remount  /   #报错: mount: /: cannot remount /dev/mapper/bigcloud--enterprise--linux--for--euler-root read-write, is write-protected.

# 2
#报错:Journal checksum error found in /dev/mapper/bigcloud--enterprise--linux--for--euler-root
#fsck.ext4: unable to set superblock flags on /dev/mapper/bigcloud--enterprise--linux--for--euler-root
fsck -y /     # (注意:系统盘不能直接fsck ,需要先umount 之后才能fsck)

# 3
mount | grep "ro,"    # 此时 / 和 /home 变成 ro 状态了。

# 4
lsblk -f   后没内容显示 
# 5
lsof /     #报错:  -bash: /usr/bin/lsof: Input/output error

cat /var/log/messages 相关日志内容: (有raid offline字样,然后挂载的盘符全部unmount了)

Sep 28 00:50:32 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 00:50:32 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 00:50:32 xxx systemd[1]: Started system activity accounting tool.
Sep 28 00:50:32 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 00:50:32 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 00:50:32 xxx kernel: [5560764.382120] audit: type=1130 audit(1727455832.827:27966): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 00:50:32 xxx kernel: [5560764.382124] audit: type=1131 audit(1727455832.827:27967): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 00:53:41 xxx systemd[1]: Started license manager.
Sep 28 00:53:41 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=LicenseManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 00:53:41 xxx kernel: [5560953.428878] audit: type=1130 audit(1727456021.875:27968): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=LicenseManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 00:53:41 xxx /license-manager[2636967]: *** INFO ***Your license is invalid. Please register to BigCloud Enterprise Linux(BC-Linux) to get the right license. You can use the command 'bclinux-license -g' to get the system UUID, then send to us to complete the registration.
Sep 28 00:53:41 xxx license-manager[2636967]: *** INFO ***Your license is invalid. Please register to BigCloud Enterprise Linux(BC-Linux) to get the right license. You can use the command 'bclinux-license -g' to get the system UUID, then send to us to complete the registration.
Sep 28 00:53:41 xxx systemd[1]: LicenseManager.service: Succeeded.
Sep 28 00:53:41 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=LicenseManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 00:53:41 xxx kernel: [5560953.544207] audit: type=1131 audit(1727456021.990:27969): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=LicenseManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:00:01 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 01:00:01 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 01:00:01 xxx systemd[1]: Started system activity accounting tool.
Sep 28 01:00:01 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:00:01 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:00:01 xxx kernel: [5561332.813338] audit: type=1130 audit(1727456401.260:27970): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:00:01 xxx kernel: [5561332.813342] audit: type=1131 audit(1727456401.260:27971): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:10:45 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 01:10:45 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 01:10:45 xxx systemd[1]: Started system activity accounting tool.
Sep 28 01:10:45 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:10:45 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:10:45 xxx kernel: [5561976.792914] audit: type=1130 audit(1727457045.242:27972): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:10:45 xxx kernel: [5561976.792918] audit: type=1131 audit(1727457045.242:27973): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:20:16 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 01:20:16 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 01:20:16 xxx systemd[1]: Started system activity accounting tool.
Sep 28 01:20:16 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:20:16 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:20:16 xxx kernel: [5562547.671320] audit: type=1130 audit(1727457616.123:27974): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:20:16 xxx kernel: [5562547.671324] audit: type=1131 audit(1727457616.123:27975): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:29:41 xxx systemd[1]: Starting dnf makecache...
Sep 28 01:29:42 xxx dnf[2736615]: Unable to connect to Registration Management Service
Sep 28 01:29:42 xxx dnf[2736615]: rhel8base                                       3.7 MB/s | 3.8 kB     00:00
Sep 28 01:29:42 xxx dnf[2736615]: Metadata cache created.
Sep 28 01:29:42 xxx systemd[1]: dnf-makecache.service: Succeeded.
Sep 28 01:29:42 xxx systemd[1]: Started dnf makecache.
Sep 28 01:29:42 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:29:42 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:29:42 xxx kernel: [5563113.753563] audit: type=1130 audit(1727458182.209:27976): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:29:42 xxx kernel: [5563113.753567] audit: type=1131 audit(1727458182.209:27977): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:30:01 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 01:30:01 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 01:30:01 xxx systemd[1]: Started system activity accounting tool.
Sep 28 01:30:01 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:30:01 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:30:01 xxx kernel: [5563132.838694] audit: type=1130 audit(1727458201.293:27978): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:30:01 xxx kernel: [5563132.838699] audit: type=1131 audit(1727458201.293:27979): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:40:29 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 01:40:29 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 01:40:29 xxx systemd[1]: Started system activity accounting tool.
Sep 28 01:40:29 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:40:29 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:40:29 xxx kernel: [5563761.105664] audit: type=1130 audit(1727458829.564:27980): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:40:29 xxx kernel: [5563761.105668] audit: type=1131 audit(1727458829.564:27981): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:50:41 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 01:50:41 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 01:50:41 xxx systemd[1]: Started system activity accounting tool.
Sep 28 01:50:41 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:50:41 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:50:41 xxx kernel: [5564373.424136] audit: type=1130 audit(1727459441.884:27982): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:50:41 xxx kernel: [5564373.424140] audit: type=1131 audit(1727459441.884:27983): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:53:57 xxx systemd[1]: Started license manager.
Sep 28 01:53:57 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=LicenseManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:53:57 xxx kernel: [5564569.028416] audit: type=1130 audit(1727459637.489:27984): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=LicenseManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:53:57 xxx /license-manager[2836069]: *** INFO ***Your license is invalid. Please register to BigCloud Enterprise Linux(BC-Linux) to get the right license. You can use the command 'bclinux-license -g' to get the system UUID, then send to us to complete the registration.
Sep 28 01:53:57 xxx license-manager[2836069]: *** INFO ***Your license is invalid. Please register to BigCloud Enterprise Linux(BC-Linux) to get the right license. You can use the command 'bclinux-license -g' to get the system UUID, then send to us to complete the registration.
Sep 28 01:53:57 xxx systemd[1]: LicenseManager.service: Succeeded.
Sep 28 01:53:57 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=LicenseManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 01:53:57 xxx kernel: [5564569.144093] audit: type=1131 audit(1727459637.605:27985): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=LicenseManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:00:01 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 02:00:01 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 02:00:01 xxx systemd[1]: Started system activity accounting tool.
Sep 28 02:00:01 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:00:01 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:00:01 xxx kernel: [5564932.850023] audit: type=1130 audit(1727460001.313:27986): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:00:01 xxx kernel: [5564932.850027] audit: type=1131 audit(1727460001.313:27987): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:10:42 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 02:10:42 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 02:10:42 xxx systemd[1]: Started system activity accounting tool.
Sep 28 02:10:42 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:10:42 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:10:42 xxx kernel: [5565574.089728] audit: type=1130 audit(1727460642.555:27988): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:10:42 xxx kernel: [5565574.089732] audit: type=1131 audit(1727460642.555:27989): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:20:41 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 02:20:41 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 02:20:41 xxx systemd[1]: Started system activity accounting tool.
Sep 28 02:20:41 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:20:41 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:20:41 xxx kernel: [5566173.416514] audit: type=1130 audit(1727461241.884:27990): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:20:41 xxx kernel: [5566173.416518] audit: type=1131 audit(1727461241.884:27991): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:29:54 xxx systemd[1]: Starting dnf makecache...
Sep 28 02:29:54 xxx dnf[2935718]: Unable to connect to Registration Management Service
Sep 28 02:29:54 xxx dnf[2935718]: Metadata cache refreshed recently.
Sep 28 02:29:54 xxx systemd[1]: dnf-makecache.service: Succeeded.
Sep 28 02:29:54 xxx systemd[1]: Started dnf makecache.
Sep 28 02:29:54 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:29:54 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:29:54 xxx kernel: [5566726.362884] audit: type=1130 audit(1727461794.833:27992): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:29:54 xxx kernel: [5566726.362901] audit: type=1131 audit(1727461794.833:27993): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:30:01 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 02:30:01 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 02:30:01 xxx systemd[1]: Started system activity accounting tool.
Sep 28 02:30:01 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:30:01 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:30:01 xxx kernel: [5566732.875307] audit: type=1130 audit(1727461801.345:27994): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:30:01 xxx kernel: [5566732.875311] audit: type=1131 audit(1727461801.345:27995): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:40:21 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 02:40:21 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 02:40:21 xxx systemd[1]: Started system activity accounting tool.
Sep 28 02:40:21 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:40:21 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:40:21 xxx kernel: [5567353.282334] audit: type=1130 audit(1727462421.755:27996): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:40:21 xxx kernel: [5567353.282338] audit: type=1131 audit(1727462421.755:27997): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:50:10 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 02:50:10 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 02:50:10 xxx systemd[1]: Started system activity accounting tool.
Sep 28 02:50:10 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:50:10 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:50:10 xxx kernel: [5567941.567809] audit: type=1130 audit(1727463010.043:27998): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:50:10 xxx kernel: [5567941.567813] audit: type=1131 audit(1727463010.043:27999): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:54:07 xxx systemd[1]: Started license manager.
Sep 28 02:54:07 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=LicenseManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:54:07 xxx kernel: [5568179.125074] audit: type=1130 audit(1727463247.601:28000): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=LicenseManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:54:07 xxx /license-manager[3035170]: *** INFO ***Your license is invalid. Please register to BigCloud Enterprise Linux(BC-Linux) to get the right license. You can use the command 'bclinux-license -g' to get the system UUID, then send to us to complete the registration.
Sep 28 02:54:07 xxx license-manager[3035170]: *** INFO ***Your license is invalid. Please register to BigCloud Enterprise Linux(BC-Linux) to get the right license. You can use the command 'bclinux-license -g' to get the system UUID, then send to us to complete the registration.
Sep 28 02:54:07 xxx systemd[1]: LicenseManager.service: Succeeded.
Sep 28 02:54:07 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=LicenseManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 02:54:07 xxx kernel: [5568179.240910] audit: type=1131 audit(1727463247.717:28001): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=LicenseManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:00:01 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 03:00:01 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 03:00:01 xxx systemd[1]: Started system activity accounting tool.
Sep 28 03:00:01 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:00:01 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:00:01 xxx kernel: [5568532.886676] audit: type=1130 audit(1727463601.364:28002): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:00:01 xxx kernel: [5568532.886680] audit: type=1131 audit(1727463601.364:28003): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:10:36 xxx systemd[1]: Starting system activity accounting tool...
Sep 28 03:10:36 xxx systemd[1]: sysstat-collect.service: Succeeded.
Sep 28 03:10:36 xxx systemd[1]: Started system activity accounting tool.
Sep 28 03:10:36 xxx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:10:36 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:10:36 xxx kernel: [5569168.314563] audit: type=1130 audit(1727464236.796:28004): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:10:36 xxx kernel: [5569168.314567] audit: type=1131 audit(1727464236.796:28005): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:15:41 xxx kernel: [5569473.268819] ses 0:0:8:0: SCSI device is removed
Sep 28 03:15:41 xxx kernel: [5569473.276039] sd 0:2:0:0: [sda] tag#203 FAILED Result: hostbyte=DID_BAD_TARGET driverbyte=DRIVER_OK
Sep 28 03:15:41 xxx kernel: [5569473.276044] sd 0:2:0:0: [sda] tag#203 CDB: Write(10) 2a 00 17 b1 fb c8 00 00 08 00
Sep 28 03:15:41 xxx kernel: [5569473.276047] print_req_error: I/O error, dev sda, sector 397540296
Sep 28 03:15:41 xxx kernel: [5569473.277001] Aborting journal on device dm-2-8.
Sep 28 03:15:41 xxx kernel: [5569473.277005] sd 0:2:0:0: [sda] tag#204 FAILED Result: hostbyte=DID_BAD_TARGET driverbyte=DRIVER_OK
Sep 28 03:15:41 xxx kernel: [5569473.277884] sd 0:2:0:0: [sda] tag#204 CDB: Write(10) 2a 00 35 94 00 78 00 00 08 00
Sep 28 03:15:41 xxx kernel: [5569473.277885] print_req_error: I/O error, dev sda, sector 898891896
Sep 28 03:15:41 xxx kernel: [5569473.277919] sd 0:2:0:0: [sda] tag#203 FAILED Result: hostbyte=DID_BAD_TARGET driverbyte=DRIVER_OK
Sep 28 03:15:41 xxx kernel: [5569473.278778] Buffer I/O error on dev dm-0, logical block 13632015, lost async page write
Sep 28 03:15:41 xxx kernel: [5569473.278779] sd 0:2:0:0: [sda] tag#203 CDB: Write(10) 2a 00 17 a4 10 00 00 00 08 00
Sep 28 03:15:41 xxx kernel: [5569473.278780] print_req_error: I/O error, dev sda, sector 396627968
Sep 28 03:15:41 xxx kernel: [5569473.279702] sd 0:2:0:0: [sda] tag#205 FAILED Result: hostbyte=DID_BAD_TARGET driverbyte=DRIVER_OK
Sep 28 03:15:41 xxx kernel: [5569473.280599] sd 0:2:0:0: [sda] tag#205 CDB: Write(10) 2a 00 35 93 f0 10 00 00 08 00
Sep 28 03:15:41 xxx kernel: [5569473.280600] Buffer I/O error on dev dm-2, logical block 48267264, lost sync page write
Sep 28 03:15:41 xxx kernel: [5569473.280615] JBD2: Error -5 detected when updating journal superblock for dm-2-8.
Sep 28 03:15:41 xxx kernel: [5569473.281521] print_req_error: I/O error, dev sda, sector 898887696
Sep 28 03:15:41 xxx kernel: [5569473.281523] Buffer I/O error on dev dm-0, logical block 13631490, lost async page write
Sep 28 03:15:41 xxx kernel: [5569473.281528] sd 0:2:0:0: [sda] tag#206 FAILED Result: hostbyte=DID_BAD_TARGET driverbyte=DRIVER_OK
Sep 28 03:15:41 xxx kernel: [5569473.284363] sd 0:2:0:0: [sda] tag#206 CDB: Write(10) 2a 00 2f 13 f0 38 00 00 08 00
Sep 28 03:15:41 xxx kernel: [5569473.284365] print_req_error: I/O error, dev sda, sector 789835832
Sep 28 03:15:41 xxx kernel: [5569473.285326] Buffer I/O error on dev dm-0, logical block 7, lost async page write
Sep 28 03:15:41 xxx kernel: [5569473.286302] sd 0:2:0:0: [sda] tag#207 FAILED Result: hostbyte=DID_BAD_TARGET driverbyte=DRIVER_OK
Sep 28 03:15:41 xxx kernel: [5569473.286303] sd 0:2:0:0: [sda] tag#207 CDB: Write(10) 2a 00 2f 13 f0 00 00 00 08 00
Sep 28 03:15:41 xxx kernel: [5569473.286304] print_req_error: I/O error, dev sda, sector 789835776
Sep 28 03:15:41 xxx kernel: [5569473.287268] Buffer I/O error on dev dm-0, logical block 0, lost async page write
Sep 28 03:15:41 xxx kernel: [5569473.288264] sd 0:2:0:0: [sda] tag#208 FAILED Result: hostbyte=DID_BAD_TARGET driverbyte=DRIVER_OK
Sep 28 03:15:41 xxx kernel: [5569473.288265] sd 0:2:0:0: [sda] tag#208 CDB: Write(10) 2a 00 0f 26 60 60 00 00 08 00
Sep 28 03:15:41 xxx kernel: [5569473.288266] print_req_error: I/O error, dev sda, sector 254173280
Sep 28 03:15:41 xxx kernel: [5569473.289272] EXT4-fs warning (device dm-2): ext4_end_bio:323: I/O error 10 writing to inode 7602197 (offset 0 size 4096 starting block 30460428)
Sep 28 03:15:41 xxx kernel: [5569473.289274] Buffer I/O error on device dm-2, logical block 30460428
Sep 28 03:15:41 xxx kernel: [5569473.290295] JBD2: Detected IO errors while flushing file data on dm-2-8
Sep 28 03:15:41 xxx kernel: [5569473.308046] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.309019] megaraid_sas 0000:07:00.0: 133265 (780779673s/0x0001/FATAL) - VD 0b/b is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.312563] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.313532] megaraid_sas 0000:07:00.0: 133270 (780779673s/0x0001/FATAL) - VD 0c/c is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.327204] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.328146] megaraid_sas 0000:07:00.0: 133287 (780779674s/0x0001/CRIT) - VD 14/14 is now DEGRADED
Sep 28 03:15:41 xxx kernel: [5569473.331633] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.332574] megaraid_sas 0000:07:00.0: 133292 (780779674s/0x0001/FATAL) - VD 14/14 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.336120] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.337063] megaraid_sas 0000:07:00.0: 133297 (780779674s/0x0001/CRIT) - VD 00/0 is now DEGRADED
Sep 28 03:15:41 xxx kernel: [5569473.340553] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.341499] megaraid_sas 0000:07:00.0: 133302 (780779674s/0x0001/FATAL) - VD 04/4 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.345038] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.345998] megaraid_sas 0000:07:00.0: 133307 (780779674s/0x0001/FATAL) - VD 05/5 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.349540] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.350487] megaraid_sas 0000:07:00.0: 133312 (780779674s/0x0001/FATAL) - VD 06/6 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.354050] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.354998] megaraid_sas 0000:07:00.0: 133317 (780779674s/0x0001/FATAL) - VD 07/7 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.358576] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.359525] megaraid_sas 0000:07:00.0: 133322 (780779674s/0x0001/FATAL) - VD 08/8 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.363097] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.364048] megaraid_sas 0000:07:00.0: 133327 (780779674s/0x0001/FATAL) - VD 09/9 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.367625] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.368575] megaraid_sas 0000:07:00.0: 133332 (780779674s/0x0001/FATAL) - VD 0a/a is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.372153] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.373110] megaraid_sas 0000:07:00.0: 133337 (780779674s/0x0001/FATAL) - VD 13/13 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.376675] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.377628] megaraid_sas 0000:07:00.0: 133342 (780779674s/0x0001/FATAL) - VD 0e/e is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.413454] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.414427] megaraid_sas 0000:07:00.0: 133358 (780779675s/0x0001/FATAL) - VD 01/1 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.418013] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.418970] megaraid_sas 0000:07:00.0: 133363 (780779675s/0x0001/FATAL) - VD 0d/d is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.422578] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.423536] megaraid_sas 0000:07:00.0: 133368 (780779675s/0x0001/FATAL) - VD 0f/f is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.434092] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.435056] megaraid_sas 0000:07:00.0: 133381 (780779676s/0x0001/FATAL) - VD 00/0 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.438675] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.439638] megaraid_sas 0000:07:00.0: 133386 (780779676s/0x0001/FATAL) - VD 02/2 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.443240] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.444219] megaraid_sas 0000:07:00.0: 133391 (780779676s/0x0001/FATAL) - VD 03/3 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.450486] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.451449] megaraid_sas 0000:07:00.0: 133399 (780779676s/0x0001/FATAL) - VD 11/11 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.455066] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.456031] megaraid_sas 0000:07:00.0: 133404 (780779676s/0x0001/FATAL) - VD 12/12 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.459654] megaraid_sas 0000:07:00.0: scanning for scsi0...
Sep 28 03:15:41 xxx kernel: [5569473.460620] megaraid_sas 0000:07:00.0: 133409 (780779676s/0x0001/FATAL) - VD 10/10 is now OFFLINE
Sep 28 03:15:41 xxx kernel: [5569473.463342] megaraid_sas 0000:07:00.0: 133412 (780779676s/0x0004/CRIT) - Enclosure PD 08(c Port 0 - 3/p1) communication lost
Sep 28 03:15:41 xxx kernel: [5569473.464210] megaraid_sas 0000:07:00.0: 133413 (780779676s/0x0004/CRIT) - Enclosure PD 08(c Port 0 - 3/p1) not responding
Sep 28 03:15:42 xxx kernel: [5569473.639367] EXT4-fs error (device dm-0): ext4_check_bdev_write_error:193: comm rs:main Q:Reg: Error while async write back metadata
Sep 28 03:15:42 xxx kernel: [5569473.641518] EXT4-fs (dm-0): previous I/O error to superblock detected
Sep 28 03:15:42 xxx kernel: [5569474.344690] sd 0:2:0:0: SCSI device is removed
Sep 28 03:15:42 xxx systemd[1]: Stopping LVM event activation on device 8:2...
Sep 28 03:15:42 xxx systemd[1]: Stopped target Local File Systems.
Sep 28 03:15:42 xxx systemd[1]: Unmounting /boot...
Sep 28 03:15:42 xxx systemd[8522]: boot.mount: Succeeded.
Sep 28 03:15:42 xxx systemd[41456]: boot.mount: Succeeded.
Sep 28 03:15:42 xxx kernel: [5569474.360681] Buffer I/O error on dev sda1, logical block 131072, lost sync page write
Sep 28 03:15:42 xxx kernel: [5569474.361774] JBD2: Error -5 detected when updating journal superblock for sda1-8.
Sep 28 03:15:42 xxx kernel: [5569474.362848] Aborting journal on device sda1-8.
Sep 28 03:15:42 xxx kernel: [5569474.363910] Buffer I/O error on dev sda1, logical block 131072, lost sync page write
Sep 28 03:15:42 xxx kernel: [5569474.364983] JBD2: Error -5 detected when updating journal superblock for sda1-8.
Sep 28 03:15:42 xxx systemd[1]: boot.mount: Succeeded.
Sep 28 03:15:42 xxx systemd[1]: Unmounted /boot.
Sep 28 03:15:42 xxx systemd[1]: systemd-fsck@dev-disk-by\x2duuid-97c1db42\x2dc794\x2d44c1\x2da552\x2dde20f5a6d110.service: Succeeded.
Sep 28 03:15:42 xxx systemd[1]: Stopped File System Check on /dev/disk/by-uuid/97c1db42-c794-44c1-a552-de20f5a6d110.
Sep 28 03:15:42 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-97c1db42\x2dc794\x2d44c1\x2da552\x2dde20f5a6d110 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:15:42 xxx kernel: [5569474.368573] audit: type=1131 audit(1727464542.850:28006): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-97c1db42\x2dc794\x2d44c1\x2da552\x2dde20f5a6d110 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:15:42 xxx lvm[3101593]:  pvscan[3101593] device 8:2 not found.
Sep 28 03:15:42 xxx systemd[1]: lvm2-pvscan@8:2.service: Succeeded.
Sep 28 03:15:42 xxx systemd[1]: Stopped LVM event activation on device 8:2.
Sep 28 03:15:42 xxx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:15:42 xxx kernel: [5569474.372089] audit: type=1131 audit(1727464542.854:28007): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-pvscan@8:2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Sep 28 03:15:42 xxx kernel: [5569474.386588] sd 0:2:1:0: SCSI device is removed
Sep 28 03:15:42 xxx systemd[1]: Unmounting /data1...
Sep 28 03:15:42 xxx systemd[8522]: data1.mount: Succeeded.
Sep 28 03:15:42 xxx systemd[41456]: data1.mount: Succeeded.
Sep 28 03:15:42 xxx kernel: [5569474.476867] Buffer I/O error on dev sdb1, logical block 146309120, lost sync page write
Sep 28 03:15:42 xxx kernel: [5569474.477972] JBD2: Error -5 detected when updating journal superblock for sdb1-8.
Sep 28 03:15:42 xxx kernel: [5569474.479075] Aborting journal on device sdb1-8.
Sep 28 03:15:42 xxx kernel: [5569474.480166] Buffer I/O error on dev sdb1, logical block 146309120, lost sync page write
Sep 28 03:15:42 xxx kernel: [5569474.481263] JBD2: Error -5 detected when updating journal superblock for sdb1-8.
Sep 28 03:15:42 xxx systemd[1]: data1.mount: Succeeded.
Sep 28 03:15:42 xxx systemd[1]: Unmounted /data1.
Sep 28 03:15:42 xxx kernel: [5569474.499573] sd 0:2:2:0: SCSI device is removed
Sep 28 03:15:43 xxx systemd[1]: Unmounting /data2...
Sep 28 03:15:43 xxx systemd[8522]: data2.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[41456]: data2.mount: Succeeded.
Sep 28 03:15:43 xxx kernel: [5569474.565530] Buffer I/O error on dev sdc1, logical block 146309120, lost sync page write
Sep 28 03:15:43 xxx kernel: [5569474.566673] JBD2: Error -5 detected when updating journal superblock for sdc1-8.
Sep 28 03:15:43 xxx kernel: [5569474.567760] Aborting journal on device sdc1-8.
Sep 28 03:15:43 xxx kernel: [5569474.568825] JBD2: Error -5 detected when updating journal superblock for sdc1-8.
Sep 28 03:15:43 xxx systemd[1]: data2.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: Unmounted /data2.
Sep 28 03:15:43 xxx kernel: [5569474.582600] sd 0:2:3:0: SCSI device is removed
Sep 28 03:15:43 xxx systemd[1]: Unmounting /data3...
Sep 28 03:15:43 xxx systemd[8522]: data3.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[41456]: data3.mount: Succeeded.
Sep 28 03:15:43 xxx kernel: [5569474.669926] JBD2: Error -5 detected when updating journal superblock for sdd1-8.
Sep 28 03:15:43 xxx kernel: [5569474.670980] Aborting journal on device sdd1-8.
Sep 28 03:15:43 xxx kernel: [5569474.671996] JBD2: Error -5 detected when updating journal superblock for sdd1-8.
Sep 28 03:15:43 xxx systemd[1]: data3.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: Unmounted /data3.
Sep 28 03:15:43 xxx kernel: [5569474.691579] sd 0:2:4:0: SCSI device is removed
Sep 28 03:15:43 xxx systemd[1]: Unmounting /data4...
Sep 28 03:15:43 xxx systemd[8522]: data4.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[41456]: data4.mount: Succeeded.
Sep 28 03:15:43 xxx kernel: [5569474.757049] JBD2: Error -5 detected when updating journal superblock for sde1-8.
Sep 28 03:15:43 xxx kernel: [5569474.758099] Aborting journal on device sde1-8.
Sep 28 03:15:43 xxx kernel: [5569474.759085] JBD2: Error -5 detected when updating journal superblock for sde1-8.
Sep 28 03:15:43 xxx systemd[1]: data4.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: Unmounted /data4.
Sep 28 03:15:43 xxx kernel: [5569474.776595] sd 0:2:5:0: SCSI device is removed
Sep 28 03:15:43 xxx systemd[1]: Unmounting /data5...
Sep 28 03:15:43 xxx systemd[8522]: data5.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[41456]: data5.mount: Succeeded.
Sep 28 03:15:43 xxx kernel: [5569474.840839] JBD2: Error -5 detected when updating journal superblock for sdf1-8.
Sep 28 03:15:43 xxx kernel: [5569474.841875] Aborting journal on device sdf1-8.
Sep 28 03:15:43 xxx kernel: [5569474.842833] JBD2: Error -5 detected when updating journal superblock for sdf1-8.
Sep 28 03:15:43 xxx systemd[1]: data5.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: Unmounted /data5.
Sep 28 03:15:43 xxx kernel: [5569474.869578] sd 0:2:6:0: SCSI device is removed
Sep 28 03:15:43 xxx systemd[1]: Unmounting /data6...
Sep 28 03:15:43 xxx kernel: [5569474.932984] JBD2: Error -5 detected when updating journal superblock for sdg1-8.
Sep 28 03:15:43 xxx kernel: [5569474.933950] Aborting journal on device sdg1-8.
Sep 28 03:15:43 xxx kernel: [5569474.934873] JBD2: Error -5 detected when updating journal superblock for sdg1-8.
Sep 28 03:15:43 xxx systemd[8522]: data6.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[41456]: data6.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: data6.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: Unmounted /data6.
Sep 28 03:15:43 xxx kernel: [5569474.947609] sd 0:2:7:0: SCSI device is removed
Sep 28 03:15:43 xxx systemd[1]: Unmounting /data7...
Sep 28 03:15:43 xxx kernel: [5569475.008938] JBD2: Error -5 detected when updating journal superblock for sdh1-8.
Sep 28 03:15:43 xxx kernel: [5569475.009931] Aborting journal on device sdh1-8.
Sep 28 03:15:43 xxx kernel: [5569475.010854] JBD2: Error -5 detected when updating journal superblock for sdh1-8.
Sep 28 03:15:43 xxx systemd[8522]: data7.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[41456]: data7.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: data7.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: Unmounted /data7.
Sep 28 03:15:43 xxx kernel: [5569475.028584] sd 0:2:8:0: SCSI device is removed
Sep 28 03:15:43 xxx systemd[1]: Unmounting /data8...
Sep 28 03:15:43 xxx kernel: [5569475.115032] JBD2: Error -5 detected when updating journal superblock for sdi1-8.
Sep 28 03:15:43 xxx kernel: [5569475.115971] Aborting journal on device sdi1-8.
Sep 28 03:15:43 xxx kernel: [5569475.116868] JBD2: Error -5 detected when updating journal superblock for sdi1-8.
Sep 28 03:15:43 xxx systemd[41456]: data8.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[8522]: data8.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: data8.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: Unmounted /data8.
Sep 28 03:15:43 xxx kernel: [5569475.134574] sd 0:2:9:0: SCSI device is removed
Sep 28 03:15:43 xxx systemd[1]: Unmounting /data9...
Sep 28 03:15:43 xxx kernel: [5569475.195464] JBD2: Error -5 detected when updating journal superblock for sdj1-8.
Sep 28 03:15:43 xxx kernel: [5569475.196429] Aborting journal on device sdj1-8.
Sep 28 03:15:43 xxx kernel: [5569475.197322] JBD2: Error -5 detected when updating journal superblock for sdj1-8.
Sep 28 03:15:43 xxx systemd[8522]: data9.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[41456]: data9.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: data9.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: Unmounted /data9.
Sep 28 03:15:43 xxx kernel: [5569475.210582] sd 0:2:10:0: SCSI device is removed
Sep 28 03:15:43 xxx systemd[1]: Unmounting /data10...
Sep 28 03:15:43 xxx kernel: [5569475.293551] JBD2: Error -5 detected when updating journal superblock for sdk1-8.
Sep 28 03:15:43 xxx kernel: [5569475.294459] Aborting journal on device sdk1-8.
Sep 28 03:15:43 xxx kernel: [5569475.295327] JBD2: Error -5 detected when updating journal superblock for sdk1-8.
Sep 28 03:15:43 xxx systemd[8522]: data10.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[41456]: data10.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: data10.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: Unmounted /data10.
Sep 28 03:15:43 xxx kernel: [5569475.311584] sd 0:2:11:0: SCSI device is removed
Sep 28 03:15:43 xxx systemd[1]: Unmounting /data11...
Sep 28 03:15:43 xxx systemd[8522]: data11.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[41456]: data11.mount: Succeeded.
Sep 28 03:15:43 xxx kernel: [5569475.373111] JBD2: Error -5 detected when updating journal superblock for sdl1-8.
Sep 28 03:15:43 xxx kernel: [5569475.374054] Aborting journal on device sdl1-8.
Sep 28 03:15:43 xxx kernel: [5569475.374900] JBD2: Error -5 detected when updating journal superblock for sdl1-8.
Sep 28 03:15:43 xxx systemd[1]: data11.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: Unmounted /data11.
Sep 28 03:15:43 xxx kernel: [5569475.389588] sd 0:2:12:0: SCSI device is removed
Sep 28 03:15:43 xxx systemd[1]: Unmounting /data12...
Sep 28 03:15:43 xxx kernel: [5569475.448307] JBD2: Error -5 detected when updating journal superblock for sdm1-8.
Sep 28 03:15:43 xxx kernel: [5569475.449226] Aborting journal on device sdm1-8.
Sep 28 03:15:43 xxx kernel: [5569475.450064] JBD2: Error -5 detected when updating journal superblock for sdm1-8.
Sep 28 03:15:43 xxx systemd[8522]: data12.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[41456]: data12.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: data12.mount: Succeeded.
Sep 28 03:15:43 xxx systemd[1]: Unmounted /data12.
Sep 28 03:15:43 xxx kernel: [5569475.466585] sd 0:2:13:0: SCSI device is removed
Sep 28 03:15:44 xxx systemd[1]: Unmounting /data13...
Sep 28 03:15:44 xxx kernel: [5569475.552603] JBD2: Error -5 detected when updating journal superblock for sdn1-8.
Sep 28 03:15:44 xxx kernel: [5569475.553451] Aborting journal on device sdn1-8.
Sep 28 03:15:44 xxx kernel: [5569475.554245] JBD2: Error -5 detected when updating journal superblock for sdn1-8.
Sep 28 03:15:44 xxx systemd[8522]: data13.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[41456]: data13.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[1]: data13.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[1]: Unmounted /data13.
Sep 28 03:15:44 xxx kernel: [5569475.573568] sd 0:2:14:0: SCSI device is removed
Sep 28 03:15:44 xxx systemd[1]: Unmounting /data14...
Sep 28 03:15:44 xxx kernel: [5569475.635122] JBD2: Error -5 detected when updating journal superblock for sdo1-8.
Sep 28 03:15:44 xxx kernel: [5569475.635980] Aborting journal on device sdo1-8.
Sep 28 03:15:44 xxx kernel: [5569475.636759] JBD2: Error -5 detected when updating journal superblock for sdo1-8.
Sep 28 03:15:44 xxx systemd[8522]: data14.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[41456]: data14.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[1]: data14.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[1]: Unmounted /data14.
Sep 28 03:15:44 xxx kernel: [5569475.652606] sd 0:2:15:0: SCSI device is removed
Sep 28 03:15:44 xxx systemd[1]: Unmounting /data15...
Sep 28 03:15:44 xxx kernel: [5569475.737835] JBD2: Error -5 detected when updating journal superblock for sdp1-8.
Sep 28 03:15:44 xxx kernel: [5569475.738635] Aborting journal on device sdp1-8.
Sep 28 03:15:44 xxx kernel: [5569475.739400] JBD2: Error -5 detected when updating journal superblock for sdp1-8.
Sep 28 03:15:44 xxx systemd[41456]: data15.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[8522]: data15.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[1]: data15.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[1]: Unmounted /data15.
Sep 28 03:15:44 xxx kernel: [5569475.760573] sd 0:2:16:0: SCSI device is removed
Sep 28 03:15:44 xxx systemd[1]: Unmounting /data16...
Sep 28 03:15:44 xxx systemd[8522]: data16.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[41456]: data16.mount: Succeeded.
Sep 28 03:15:44 xxx kernel: [5569475.822886] JBD2: Error -5 detected when updating journal superblock for sdq1-8.
Sep 28 03:15:44 xxx kernel: [5569475.823712] Aborting journal on device sdq1-8.
Sep 28 03:15:44 xxx kernel: [5569475.824451] JBD2: Error -5 detected when updating journal superblock for sdq1-8.
Sep 28 03:15:44 xxx systemd[1]: data16.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[1]: Unmounted /data16.
Sep 28 03:15:44 xxx kernel: [5569475.842590] sd 0:2:17:0: SCSI device is removed
Sep 28 03:15:44 xxx systemd[1]: Unmounting /data17...
Sep 28 03:15:44 xxx systemd[8522]: data17.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[41456]: data17.mount: Succeeded.
Sep 28 03:15:44 xxx kernel: [5569475.927160] JBD2: Error -5 detected when updating journal superblock for sdr1-8.
Sep 28 03:15:44 xxx kernel: [5569475.927908] Aborting journal on device sdr1-8.
Sep 28 03:15:44 xxx kernel: [5569475.928625] JBD2: Error -5 detected when updating journal superblock for sdr1-8.
Sep 28 03:15:44 xxx systemd[1]: data17.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[1]: Unmounted /data17.
Sep 28 03:15:44 xxx kernel: [5569475.947567] sd 0:2:18:0: SCSI device is removed
Sep 28 03:15:44 xxx systemd[1]: Unmounting /data18...
Sep 28 03:15:44 xxx systemd[8522]: data18.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[41456]: data18.mount: Succeeded.
Sep 28 03:15:44 xxx kernel: [5569476.010642] JBD2: Error -5 detected when updating journal superblock for sds1-8.
Sep 28 03:15:44 xxx kernel: [5569476.011433] Aborting journal on device sds1-8.
Sep 28 03:15:44 xxx kernel: [5569476.012139] JBD2: Error -5 detected when updating journal superblock for sds1-8.
Sep 28 03:15:44 xxx systemd[1]: data18.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[1]: Unmounted /data18.
Sep 28 03:15:44 xxx kernel: [5569476.040582] sd 0:2:19:0: SCSI device is removed
Sep 28 03:15:44 xxx systemd[1]: Unmounting /data19...
Sep 28 03:15:44 xxx systemd[8522]: data19.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[41456]: data19.mount: Succeeded.
Sep 28 03:15:44 xxx kernel: [5569476.126834] JBD2: Error -5 detected when updating journal superblock for sdt1-8.
Sep 28 03:15:44 xxx kernel: [5569476.127570] Aborting journal on device sdt1-8.
Sep 28 03:15:44 xxx kernel: [5569476.128271] JBD2: Error -5 detected when updating journal superblock for sdt1-8.
Sep 28 03:15:44 xxx systemd[1]: data19.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[1]: Unmounted /data19.
Sep 28 03:15:44 xxx kernel: [5569476.154075] sd 0:2:20:0: SCSI device is removed
Sep 28 03:15:44 xxx systemd[1]: Unmounting /data...
Sep 28 03:15:44 xxx systemd[8522]: data.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[41456]: data.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[1]: data.mount: Succeeded.
Sep 28 03:15:44 xxx systemd[1]: Unmounted /data.
-bash-5.0# 

处理方法:服务器关机,换阵列卡。
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值