Project

General

Profile

Install racadm on CentOS for dell iDRAC » History » Version 2

Viacheslav Anzhiganov, 03/04/2025 05:33 PM

1 1 Viacheslav Anzhiganov
# Install racadm on CentOS for Dell iDRAC
2
3 2 Viacheslav Anzhiganov
4
Repo: https://linux.dell.com/repo/hardware/DSU_25.02.24/
5
6
7 1 Viacheslav Anzhiganov
## 1. Install
8
9
Disable the Citrix repository and start the installation:
10
11
```
12
mv /etc/yum.repos.d/Citrix.repo /root/Citrix.repo
13
yum clean all
14
wget -q -O - http://linux.dell.com/repo/hardware/Linux_Repository_14.12.00/bootstrap.cgi | bash
15
yum --enablerepo=base install srvadmin-all 
16
```
17
18
If you get some error messages try:
19
20
```
21
yum install compat-libstdc++-33-3.2.3-69.el6.i686 zlib.i686
22
```
23
24
You can reactivate the Citrix repository after the installation:
25
26
```
27
mv /root/Citrix.repo /etc/yum.repos.d
28
```
29
30
## 2. Firewall changes
31
32
For webinterface and SNMP access you have to change the firewall settings on your XenServer.
33
Edit “/etc/sysconfig/iptables” and insert:
34
35
```
36
-A RH-Firewall-1-INPUT -m conntrack –ctstate NEW -m udp -p udp –dport 161 -j ACCEPT
37
-A RH-Firewall-1-INPUT -m conntrack –ctstate NEW -m tcp -p tcp –dport 1311 -j ACCEPT
38
```
39
40
#Important !!! Add this lines before:
41
42
```
43
-A RH-Firewall-1-INPUT -j REJECT –reject-with icmp-host-prohibited
44
COMMIT
45
```
46
47
so nano /etc/sysconfig/iptables
48
49
 
50
## 3. Restart the services
51
52
```
53
service iptables restart
54
/opt/dell/srvadmin/sbin/srvadmin-services.sh start
55
```
56
57
## 4. Access the web-interface
58
59
To access the web-interface open your browser (IE, Firefox or Safari, chrome doesn’t work) and go to:
60
61
https://172.27.250.3:1311/
62
63
You can now login with your XenServer root login and password.