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