<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>System Adm &#187; server</title>
	<atom:link href="http://www.system.adm.br/tag/server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.system.adm.br</link>
	<description>Some IT Tips (Linux, Unix, HP-UX, AIX, Solaris, etc).</description>
	<lastBuildDate>Wed, 19 May 2010 20:11:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Lock an user account in HP-UX</title>
		<link>http://www.system.adm.br/2009/09/lock-an-user-account-in-hp-ux/</link>
		<comments>http://www.system.adm.br/2009/09/lock-an-user-account-in-hp-ux/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 17:45:17 +0000</pubDate>
		<dc:creator>Lincoln Zuljewic Silva</dc:creator>
				<category><![CDATA[HP-UX]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.system.adm.br/?p=171</guid>
		<description><![CDATA[To lock an user account in HP-UX, you can use the following command: # /usr/lbin/modprpw -m alock=YES USER]]></description>
			<content:encoded><![CDATA[<p>To lock an user account in HP-UX, you can use the following command:</p>
<p>	<span style="font-size: 12px;"><code># /usr/lbin/modprpw -m alock=YES USER</code></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.system.adm.br/2009/09/lock-an-user-account-in-hp-ux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merge many depots</title>
		<link>http://www.system.adm.br/2009/08/merge-many-depots/</link>
		<comments>http://www.system.adm.br/2009/08/merge-many-depots/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 17:58:23 +0000</pubDate>
		<dc:creator>Lincoln Zuljewic Silva</dc:creator>
				<category><![CDATA[HP-UX]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.system.adm.br/?p=162</guid>
		<description><![CDATA[When you have many depot files, you can create a single big depot and install it instead of install one by one. Let&#8217;s assume that you need install the following depots, and they are all located in the directory /tmp/install/depots: autoconf-2.64-hppa-11.11.depot bison-2.4.1-hppa-11.11.depot gawk-3.1.7-hppa-11.11.depot sed-4.2.1-hppa-11.11.depot tcltk-8.5.7-hppa-11.11.depot texinfo-4.13-hppa-11.11.depot zip-3.0-hppa-11.11.depot To create a single depot, run the follow [...]]]></description>
			<content:encoded><![CDATA[<p>When you have many depot files, you can create a single big depot and install it instead of install one by one. Let&rsquo;s assume that you need install the following depots, and they are all located in the directory /tmp/install/depots:</p>
<p>	<span style="font-size: 12px;"><code>autoconf-2.64-hppa-11.11.depot bison-2.4.1-hppa-11.11.depot gawk-3.1.7-hppa-11.11.depot sed-4.2.1-hppa-11.11.depot tcltk-8.5.7-hppa-11.11.depot texinfo-4.13-hppa-11.11.depot zip-3.0-hppa-11.11.depot</code></span></p>
<p>	To create a single depot, run the follow commands:<br />
	<span style="font-size: 12px;"><code># cd /tmp/install/ for i in `ls depots/*.depot` ;do swcopy -s /tmp/install/$i \* @/tmp/install/big;done</code></span></p>
<p>	Now, to install it, you can use:<br />
	<span style="font-size: 12px;"><code># swinstall -s /tmp/install/big</code></span></p>
<p>	&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.system.adm.br/2009/08/merge-many-depots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris and NRPE</title>
		<link>http://www.system.adm.br/2009/08/solaris-and-nrpe/</link>
		<comments>http://www.system.adm.br/2009/08/solaris-and-nrpe/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 17:16:20 +0000</pubDate>
		<dc:creator>Lincoln Zuljewic Silva</dc:creator>
				<category><![CDATA[Solaris]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.system.adm.br/?p=148</guid>
		<description><![CDATA[A very nice guide to install NRPE and nagios-plugins on Solaris 10 can be found here. To stop/start the NRPE, you can use the following command: # svcadm disable svc:/network/nrpe/tcp # svcadm enable svc:/network/nrpe/tcp If you keep getting the &#34;CHECK_NRPE: Error &#8211; Could not complete SSL handshake.&#34; message, see this FAQ comment]]></description>
			<content:encoded><![CDATA[<p>A very nice guide to install NRPE and nagios-plugins on Solaris 10 can be found <a href="http://www.utahsysadmin.com/2008/03/14/configuring-nagios-plugins-nrpe-on-solaris-10/">here</a>. To stop/start the NRPE, you can use the following command:</p>
<pre><span style="font-size: 12px;"><code># svcadm disable svc:/network/nrpe/tcp
# svcadm enable svc:/network/nrpe/tcp
</code></span></pre>
<p>
	If you keep getting the &quot;CHECK_NRPE: Error &#8211; Could not complete SSL handshake.&quot; message, see <a href="http://support.nagios.com/knowledgebase/faqs/index.php?option=com_content&amp;view=article&amp;id=52&amp;catid=35&amp;faq_id=372&amp;expand=false&amp;showdesc=true">this FAQ comment</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.system.adm.br/2009/08/solaris-and-nrpe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resizing lvol in Red Hat AS 4</title>
		<link>http://www.system.adm.br/2009/08/resizing-lvol-in-red-hat-as-4/</link>
		<comments>http://www.system.adm.br/2009/08/resizing-lvol-in-red-hat-as-4/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 13:32:55 +0000</pubDate>
		<dc:creator>Lincoln Zuljewic Silva</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.system.adm.br/?p=141</guid>
		<description><![CDATA[As incredible as it seems, RHAS4 doesn&#39;t came with the resize2fs command (just like the others RH distributions). After some research, I found the tool that replace the resize2fs command and it&#39;s the ext2online, for example: # ext2online /dev/mapper/VG00-vl02 &#160;]]></description>
			<content:encoded><![CDATA[<p>As incredible as it seems, RHAS4 doesn&#39;t came with the resize2fs command (just like the others RH distributions). After some research, I found the tool that replace the resize2fs command and it&#39;s the ext2online, for example:</p>
<p>	<span style="font-size: 12px;"><code># ext2online /dev/mapper/VG00-vl02</code></span></p>
<p>	&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.system.adm.br/2009/08/resizing-lvol-in-red-hat-as-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rlogin access denied</title>
		<link>http://www.system.adm.br/2009/06/rlogin-access-denied/</link>
		<comments>http://www.system.adm.br/2009/06/rlogin-access-denied/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 13:54:48 +0000</pubDate>
		<dc:creator>Lincoln Zuljewic Silva</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.system.adm.br/?p=129</guid>
		<description><![CDATA[In some specific situations, you need use rlogin to remote access a server, but you can face the following error: clientServer:~ # rlogin rloginServer Password: Password: Login incorrect login: root Password: Login incorrect login: root Password: Login incorrect login: root Password: Login incorrect rlogin: connection closed. If you check the /var/log/secure log on the &#8220;rloginServer&#8221;, [...]]]></description>
			<content:encoded><![CDATA[<p>In some specific situations, you need use rlogin to remote access a server, but you can face the following error:</p>
<p>	<span style="font-size: 12px;"><code>clientServer:~ # rlogin rloginServer<br />
	Password:<br />
	Password:<br />
	Login incorrect</p>
<p>	login: root<br />
	Password:<br />
	Login incorrect</p>
<p>	login: root<br />
	Password:<br />
	Login incorrect</p>
<p>	login: root<br />
	Password:<br />
	Login incorrect</p>
<p>	rlogin: connection closed.</code></span></p>
<p>
	If you check the /var/log/secure log on the &ldquo;rloginServer&rdquo;, you will find the following messages:<br />
	<span style="font-size: 12px;"><code><br />
	Jun 15 10:44:41 rloginServer rlogind[16640]: pam_securetty(rlogin:auth): access denied: tty &#39;rlogin&#39; is not secure !<br />
	Jun 15 10:44:41 rloginServer rlogind[16640]: pam_rhosts_auth(rlogin:auth): denied to root@10.11.4.9 as root: access not allowed<br />
	Jun 15 10:44:47 rloginServer login: pam_securetty(remote:auth): access denied: tty &#39;pts/0&#39; is not secure !<br />
	Jun 15 10:44:51 rloginServer login: FAILED LOGIN 1 FROM 10.11.4.9 FOR root, Authentication failure<br />
	Jun 15 10:44:53 rloginServer login: pam_securetty(remote:auth): access denied: tty &#39;pts/0&#39; is not secure !<br />
	Jun 15 10:44:58 rloginServer login: FAILED LOGIN 2 FROM 10.11.4.9 FOR root, Authentication failure<br />
	Jun 15 10:44:58 rloginServer login: pam_unix(remote:auth): bad username []<br />
	Jun 15 10:44:58 rloginServer login: pam_succeed_if(remote:auth): error retrieving information about user<br />
	Jun 15 10:44:58 rloginServer login: FAILED LOGIN 3 FROM 10.11.4.9 FOR , User not known to the underlying authentication module<br />
	Jun 15 10:44:59 rloginServer login: pam_unix(remote:auth): bad username []<br />
	Jun 15 10:44:59 rloginServer login: pam_succeed_if(remote:auth): error retrieving information about user<br />
	Jun 15 10:44:59 rloginServer login: FAILED LOGIN SESSION FROM 10.11.4.9 FOR , User not known to the underlying authentication module</code></span></p>
<p>
	The problem here, is that &ldquo;rlogin&rdquo; is not a &ldquo;secure&rdquo; shell. To configure it, you should add &ldquo;rlogin&rdquo; (without the quotes) to /etc/securetty .</p>
<p>	After that, you will be able to access the rlogin server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.system.adm.br/2009/06/rlogin-access-denied/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
