我必须更新 Intel S3420GPLC 板。BIOS、BMC、FRU/SDR,全部。
在英特尔下载中,一切都几乎是自动化的。您应该启动到集成的 EFI shell,安装 USB 磁盘/密钥,并启动startup.nsh
下载中包含的脚本。
问题是,我同时尝试了 4GB USB 密钥和更大的 60GB USB 磁盘,但效果不佳。当然,两者都有 FAT32 文件系统。
当将它们插入并map -r
从 EFI shell运行时,密钥甚至没有列出。磁盘显示为blk0
,我可以切换到它。问题是进入脚本:
ls
或dir
命令返回"Cannot open current directory - Not found"
cd update
返回 "Target directory not found"
看起来磁盘也没有正确安装。关于我可以尝试的命令或可以关闭的 BIOS 设置的任何指示?
编辑,新信息:
mount blk0 fs0
只是创建了一个别名,blk0
但并没有使它更具可读性。因此,我配置了 Haproxy,因此日志记录将通过 rsyslog,并且现在全部转储到一个文件中。
它肯定会记录日志,因为我在启动时收到那些“开始”消息,但根本没有记录 HTTP 请求。我的配置有什么问题?
haproxy.cfg :
global
log /dev/log local0 debug
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin
stats timeout 30s
user haproxy
group haproxy
daemon
defaults
log global
mode http
option httplog
option dontlognull
timeout connect 5000
timeout client 50000
timeout server 50000
errorfile 400 /etc/haproxy/errors/400.http
errorfile 403 /etc/haproxy/errors/403.http
errorfile 408 /etc/haproxy/errors/408.http
errorfile 500 /etc/haproxy/errors/500.http
errorfile 502 /etc/haproxy/errors/502.http
errorfile 503 /etc/haproxy/errors/503.http
errorfile 504 /etc/haproxy/errors/504.http
frontend webfront
option forwardfor
stats enable
stats uri /haproxy?statis
stats …
Run Code Online (Sandbox Code Playgroud) 我想在无外设的 CentOS6 服务器上监控一些硬件相关的数据。更具体地说,诸如电压、风扇速度、热数据……
由于服务器是无头的,我发现最好的方法是通过一个 php 脚本来格式化结果ipmitool
。
当然,webserver 用户不是root,那会很糟糕。可悲的是,似乎非 root 用户没有访问权限/dev/ipmi*
,这也是有道理的。
ipmitool -U "someUser" -P "somePassword" sdr
以 root 身份运行给了我预期的读数,但返回
Could not open device at /dev/ipmi0 or /dev/ipmi/0 or /dev/ipmidev/0: No such file or directory
Get Device ID command failed
Unable to open SDR for reading
Run Code Online (Sandbox Code Playgroud)
当我作为网络服务器登录时。
我在这里和那里搜索了一些,并且对 感兴趣devfs.rules
,但它似乎没有出现在 CentOS6 上,而且我也不熟悉与安装/dev
相关的东西。
谁能指出我正确的方向?