<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to install Data Protector 6.0 on Red Hat Enterprise Linux 5</title>
	<atom:link href="http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5/feed" rel="self" type="application/rss+xml" />
	<link>http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5</link>
	<description>Tenete la porta aperta...</description>
	<lastBuildDate>Mon, 06 Feb 2012 11:11:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Fredrik R</title>
		<link>http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5/comment-page-1#comment-13891</link>
		<dc:creator>Fredrik R</dc:creator>
		<pubDate>Mon, 28 Feb 2011 10:54:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5#comment-13891</guid>
		<description>same thing with RHEL 6

you have to add

omni 5555/tcp # DATA-PROTECTOR

to the /etc/services file</description>
		<content:encoded><![CDATA[<p>same thing with RHEL 6</p>
<p>you have to add</p>
<p>omni 5555/tcp # DATA-PROTECTOR</p>
<p>to the /etc/services file</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rebelmam</title>
		<link>http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5/comment-page-1#comment-12179</link>
		<dc:creator>rebelmam</dc:creator>
		<pubDate>Mon, 07 Feb 2011 13:42:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5#comment-12179</guid>
		<description>this did not work but I did find the solution

#! Opened a call with support.  Need to disable SELinux.
#! SELinux has two major components on your system. There&#039;s the kernel mechanism which is 
#! enforcing a bunch of access rules which apply to processes and files. And secondly, 
#! there&#039;s file labels : every file on your system has extra labels attached to it which 
#! tie-in with those access rules. Run ls -Z and you&#039;ll see what I mean.
 [root@dossmonitor2 log]# getenforce
Enforcing

#! Temporarily change it from Enforcing to Permissive, ran a test and it works now.
#! This was the major issue.
[root@dossmonitor2 log]# echo 0 &gt; /selinux/enforce
[root@dossmonitor2 log]# getenforce
Permissive

#! Now make the change perminent so it will work when rebooted.
#! change SELINUX=enforcing to SELINUX=permissive
[root@dossmonitor2 client]# cd /etc/selinux
[root@dossmonitor2 selinux]# ll
total 32
-rw-r--r-- 1 root root  512 Jan  5 14:46 config
-rw------- 1 root root  234 Jan  7  2010 restorecond.conf
-rw-r--r-- 1 root root 1752 Jul 28  2009 semanage.conf
drwxr-xr-x 5 root root 4096 Feb  3 13:17 targeted
[root@dossmonitor2 selinux]# vi config

[root@dossmonitor2 selinux]# cat config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#       enforcing - SELinux security policy is enforced.
#       permissive - SELinux prints warnings instead of enforcing.
#       disabled - SELinux is fully disabled.
SELINUX=permissive
# SELINUXTYPE= type of policy in use. Possible values are:
#       targeted - Only targeted network daemons are protected.
#       strict - Full SELinux protection.
SELINUXTYPE=targeted

# SETLOCALDEFS= Check local definition changes
SETLOCALDEFS=0

#! reboot to make sure that it stays permissive
[root@dossmonitor2 selinux]# reboot

[root@dossmonitor2 ~]# getenforce
Permissive

#! try the upgrade again</description>
		<content:encoded><![CDATA[<p>this did not work but I did find the solution</p>
<p>#! Opened a call with support.  Need to disable SELinux.<br />
#! SELinux has two major components on your system. There&#8217;s the kernel mechanism which is<br />
#! enforcing a bunch of access rules which apply to processes and files. And secondly,<br />
#! there&#8217;s file labels : every file on your system has extra labels attached to it which<br />
#! tie-in with those access rules. Run ls -Z and you&#8217;ll see what I mean.<br />
 [root@dossmonitor2 log]# getenforce<br />
Enforcing</p>
<p>#! Temporarily change it from Enforcing to Permissive, ran a test and it works now.<br />
#! This was the major issue.<br />
[root@dossmonitor2 log]# echo 0 &gt; /selinux/enforce<br />
[root@dossmonitor2 log]# getenforce<br />
Permissive</p>
<p>#! Now make the change perminent so it will work when rebooted.<br />
#! change SELINUX=enforcing to SELINUX=permissive<br />
[root@dossmonitor2 client]# cd /etc/selinux<br />
[root@dossmonitor2 selinux]# ll<br />
total 32<br />
-rw-r&#8211;r&#8211; 1 root root  512 Jan  5 14:46 config<br />
-rw&#8212;&#8212;- 1 root root  234 Jan  7  2010 restorecond.conf<br />
-rw-r&#8211;r&#8211; 1 root root 1752 Jul 28  2009 semanage.conf<br />
drwxr-xr-x 5 root root 4096 Feb  3 13:17 targeted<br />
[root@dossmonitor2 selinux]# vi config</p>
<p>[root@dossmonitor2 selinux]# cat config<br />
# This file controls the state of SELinux on the system.<br />
# SELINUX= can take one of these three values:<br />
#       enforcing &#8211; SELinux security policy is enforced.<br />
#       permissive &#8211; SELinux prints warnings instead of enforcing.<br />
#       disabled &#8211; SELinux is fully disabled.<br />
SELINUX=permissive<br />
# SELINUXTYPE= type of policy in use. Possible values are:<br />
#       targeted &#8211; Only targeted network daemons are protected.<br />
#       strict &#8211; Full SELinux protection.<br />
SELINUXTYPE=targeted</p>
<p># SETLOCALDEFS= Check local definition changes<br />
SETLOCALDEFS=0</p>
<p>#! reboot to make sure that it stays permissive<br />
[root@dossmonitor2 selinux]# reboot</p>
<p>[root@dossmonitor2 ~]# getenforce<br />
Permissive</p>
<p>#! try the upgrade again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nancey Puita</title>
		<link>http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5/comment-page-1#comment-7204</link>
		<dc:creator>Nancey Puita</dc:creator>
		<pubDate>Wed, 08 Dec 2010 02:50:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5#comment-7204</guid>
		<description>Interesting blog post. Friends of mine went throught the same when they were looking for Wicked Tickets. I told them to Buy Wicked Tickets from BuyWickedTickets . net</description>
		<content:encoded><![CDATA[<p>Interesting blog post. Friends of mine went throught the same when they were looking for Wicked Tickets. I told them to Buy Wicked Tickets from BuyWickedTickets . net</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: srini</title>
		<link>http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5/comment-page-1#comment-6024</link>
		<dc:creator>srini</dc:creator>
		<pubDate>Mon, 01 Nov 2010 07:02:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5#comment-6024</guid>
		<description>i install data protector on windows
how can i take backup through dataprotector

help me</description>
		<content:encoded><![CDATA[<p>i install data protector on windows<br />
how can i take backup through dataprotector</p>
<p>help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George Drapkin</title>
		<link>http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5/comment-page-1#comment-5729</link>
		<dc:creator>George Drapkin</dc:creator>
		<pubDate>Sun, 24 Oct 2010 09:18:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5#comment-5729</guid>
		<description>I really like your blog and i really appreciate the excellent quality content you are posting here for free for your online readers. Can you tell us which blog platform you are using?</description>
		<content:encoded><![CDATA[<p>I really like your blog and i really appreciate the excellent quality content you are posting here for free for your online readers. Can you tell us which blog platform you are using?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5/comment-page-1#comment-4313</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Wed, 18 Aug 2010 19:10:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5#comment-4313</guid>
		<description>How do you install the mangament GUI on a windows machine. I have installed on the Red Hat now i need to mange it from my Windows machine.</description>
		<content:encoded><![CDATA[<p>How do you install the mangament GUI on a windows machine. I have installed on the Red Hat now i need to mange it from my Windows machine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew</title>
		<link>http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5/comment-page-1#comment-1771</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Thu, 15 Oct 2009 07:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5#comment-1771</guid>
		<description>I had to manually add the Red Hat client to the cell_info file in \OmniBack\Config\Server\cell on the Windows Cell Manager.</description>
		<content:encoded><![CDATA[<p>I had to manually add the Red Hat client to the cell_info file in \OmniBack\Config\Server\cell on the Windows Cell Manager.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5/comment-page-1#comment-1517</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Tue, 25 Aug 2009 17:43:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5#comment-1517</guid>
		<description>Thanks for this. Following these steps allowed us to install the HPDP client on Oracle Enterprise Linux&#039;s Xen Server. The only change was using up2date rather than yum to install xinetd and ncompress.</description>
		<content:encoded><![CDATA[<p>Thanks for this. Following these steps allowed us to install the HPDP client on Oracle Enterprise Linux&#8217;s Xen Server. The only change was using up2date rather than yum to install xinetd and ncompress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Webby</title>
		<link>http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5/comment-page-1#comment-1085</link>
		<dc:creator>Webby</dc:creator>
		<pubDate>Mon, 06 Apr 2009 13:14:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5#comment-1085</guid>
		<description>I&#039;m trying to install install DP6 client onto RHEL4.6 but my windows Cell Manager cannot import the client.

Name resolution is OK in both directions.
IP tables is off for the moment.
I can telnet port 5555 in both directions</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to install install DP6 client onto RHEL4.6 but my windows Cell Manager cannot import the client.</p>
<p>Name resolution is OK in both directions.<br />
IP tables is off for the moment.<br />
I can telnet port 5555 in both directions</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: apiero</title>
		<link>http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5/comment-page-1#comment-716</link>
		<dc:creator>apiero</dc:creator>
		<pubDate>Thu, 26 Feb 2009 14:15:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.brucalipto.org/linux/how-to-install-data-protector-60-on-red-hat-enterprise-linux-5#comment-716</guid>
		<description>Hi Rory,

    can you post the result of the &#039;ls -la&#039; of the directory in which you run ./omnisetup.sh?

Bye
Piero</description>
		<content:encoded><![CDATA[<p>Hi Rory,</p>
<p>    can you post the result of the &#8216;ls -la&#8217; of the directory in which you run ./omnisetup.sh?</p>
<p>Bye<br />
Piero</p>
]]></content:encoded>
	</item>
</channel>
</rss>

