原创文章,转载请注明出处
https://qiedd.com/

0. 前言

BK650M2-CH 这块中国特供版的 UPS 在使用 apcupsd 时会出现异常情况, 即使是接入市电, 它的状态会一直维持在 STATUS : ONBATT, 因此会导致异常关机, 所以我决定在 PVE 上使用 NUT

1. 使用

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# 安装 nut
apt update -y && apt install nut
# 扫描 UPS 设备
nut-scanner
# 安装 nut apt update -y && apt install nut # 扫描 UPS 设备 nut-scanner
# 安装 nut
apt update -y && apt install nut

# 扫描 UPS 设备
nut-scanner
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# 简单配置
vim /etc/nut/ups.conf
## 修改 upsname 以及注释 maxretry
# 简单配置 vim /etc/nut/ups.conf ## 修改 upsname 以及注释 maxretry
# 简单配置
vim /etc/nut/ups.conf

## 修改 upsname 以及注释 maxretry
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# nut 驱动启动
systemctl start nut-driver-enumerator.service && systemctl enable nut-driver-enumerator.service
# 配置用户文件
/etc/nut/upsd.users
## 在最下方加入
[upsuser]
password = password
upsmon primary
actions = SET
instcmds = ALL
# 设置 nut 模式
vim /etc/nut/nut.conf
## 修改为
MODE=standalone
# 启动 nut-server
systemctl start nut-server.service && systemctl enable nut-server.service
# 查看配置
upsc upsname
# nut 驱动启动 systemctl start nut-driver-enumerator.service && systemctl enable nut-driver-enumerator.service # 配置用户文件 /etc/nut/upsd.users ## 在最下方加入 [upsuser] password = password upsmon primary actions = SET instcmds = ALL # 设置 nut 模式 vim /etc/nut/nut.conf ## 修改为 MODE=standalone # 启动 nut-server systemctl start nut-server.service && systemctl enable nut-server.service # 查看配置 upsc upsname
# nut 驱动启动
systemctl start nut-driver-enumerator.service && systemctl enable nut-driver-enumerator.service

# 配置用户文件
/etc/nut/upsd.users

## 在最下方加入
[upsuser]
     password = password
     upsmon primary
     actions = SET
     instcmds = ALL

# 设置 nut 模式
vim /etc/nut/nut.conf

## 修改为
MODE=standalone

# 启动 nut-server
systemctl start nut-server.service && systemctl enable nut-server.service

# 查看配置
upsc upsname

输出

设置断电关机

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# 设置 upscom
vim /etc/nut/upsmon.conf
## 找到 MONITOR 添加
MONITOR upsname@localhost 1 upsduser password primary
## 一些选项
DEADTIME: UPS 掉线阈值, 默认 15s
FINALDELAY: 等待多久后, shutdown 宿主机
## 启动 monitor
systemctl start nut-monitor.service && systemctl enable nut-monitor.service
## 启动 nut
systemctl start nut.target && systemctl enable nut.target && systemctl enable nut-driver.target && systemctl start nut-driver.target
# 设置 upscom vim /etc/nut/upsmon.conf ## 找到 MONITOR 添加 MONITOR upsname@localhost 1 upsduser password primary ## 一些选项 DEADTIME: UPS 掉线阈值, 默认 15s FINALDELAY: 等待多久后, shutdown 宿主机 ## 启动 monitor systemctl start nut-monitor.service && systemctl enable nut-monitor.service ## 启动 nut systemctl start nut.target && systemctl enable nut.target && systemctl enable nut-driver.target && systemctl start nut-driver.target
# 设置 upscom
vim /etc/nut/upsmon.conf

## 找到 MONITOR 添加
MONITOR upsname@localhost 1 upsduser password primary

## 一些选项
DEADTIME: UPS 掉线阈值, 默认 15s
FINALDELAY: 等待多久后, shutdown 宿主机

## 启动 monitor
systemctl start nut-monitor.service && systemctl enable nut-monitor.service

## 启动 nut
systemctl start nut.target && systemctl enable nut.target && systemctl enable nut-driver.target && systemctl start nut-driver.target

2. 参考

https://wiki.archlinux.org/title/Network_UPS_Tools


0 条评论

发表回复

Avatar placeholder

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理