我从未见过我管理的Linux服务器。我怎样才能知道它是否安装了某种IPMI?
我尝试通过安装ipmitool来回答我自己的问题:
Setting up ipmitool (1.8.9-2) ...
Starting IPMI event daemon ipmievdipmievd: using pidfile /var/run/ipmievd.pid0
Could not open device at /dev/ipmi0 or /dev/ipmi/0 or /dev/ipmidev/0: No such file or directory
Unable to open interface
我想监控我的笔记本电脑的耗电量。我喜欢IPMI和安装版。在安装之后,我加载了所有模块并运行ipmitool命令,并显示以下错误:
ipmitool -I open chassis power status
Could not open device at /dev/ipmi0 or /dev/ipmi/0 or /dev/ipmidev/0: No such file or directory
Unable to get Chassis Power Status**
输出dmesg为:
ipmi message handler version 39.2
ipmi device interfac
解决centos 6.5服务器上的IPMI问题。具体来说,我无法建立IPMI网络管理,因为错误时,试图使用IPMI局域网设置。
输入ipmitool打印时会出现以下错误:
[root@]# ipmitool lan print
Could not open device at /dev/ipmi0 or /dev/ipmi/0 or /dev/ipmidev/0: No such file or directory
Get Channel Info command failed
Could not open device at /dev/ipmi0 or /dev/ipmi/0 or /dev
我的网络上有一个私有ip,它是一个ipmi服务器。我已经安装了另一个服务器(Centos 7),并分配了一个公共ip作为代理,以便能够从一个强大的网络访问ipmi服务器。我试着用nginx和haproxy来做这件事,但是配置上有问题。有人能帮我吗?
Here is my nginx config:
#cat /etc/nginx/conf.d/proxy.conf
upstream ipmi_backend {
# the ipmi server
server 10.150.0.34:443;
keepalive 64;
}
server {
listen
我刚开始使用IPMI并尝试用IPMI地址配置运行Ubuntu14.04的服务器。我发现Ubuntu有几个可用的包,它们可能会对此有所帮助:openipmi和ipmitools,根据此链接的说法,由于受到官方的支持,它似乎推荐了openipmi。然而,我很容易找到ipmitools的指令,所以我尝试使用ipmitools (这些指令是针对Centos的,包括了yum的使用,但我试图对Ubuntu进行适当的调整)。我在安装过程中遇到了以下错误:
Could not open device at /dev/ipmi0 or /dev/ipmi/0 or /dev/ipmidev/0
我找到了这个问题
我想在无头CentOS6服务器上监视一些与硬件相关的数据。更具体地说,比如电压,风扇速度,热数据.
因为服务器是无头的,所以我找到的最好的方法是通过一个php脚本来以一种很好的方式格式化来自ipmitool的结果。
当然,bad服务器用户不是根用户,这将是不好的。可悲的是,似乎一个非根用户没有访问/dev/ipmi*的权利,这也是有道理的。
运行ipmitool -U "someUser" -P "somePassword" sdr可以将预期的读数作为根值,但返回
Could not open device at /dev/ipmi0 or /dev/ipmi/
我正在尝试使用ansible的ipmi_ power 模块来驱动一台机器。
文档说,您需要在执行剧本的主机上安装pyghmi,并且我已经确认我有用于python 2和3的模块。
[userg@box ~]$ python3
Python 3.6.8 (default, Apr 2 2020, 13:34:55)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] on linux
Type "help", "copyright", "credits" or "license" for more inf
作为新手,我尝试使用IPMI与超级微型主机卡x8dth-如果,版本1.0
我决定使用LAN1,而不是专用的IPMI。
在BIOS中,我将IPMI的地址设置为192.168.1.199。
我的操作系统是debian-挤压。我安装了ipmitool。
LAN1地址是192.168.1.35,我可以点击它。
命令ipmitool底盘状态返回
Could not open /dev/ipmi0
ls -l /dev/ipmi*什么也不返回。ping 192.168.1.199返回超时
我怎样才能在这个层次上争取更多呢?提前谢谢你。