<?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>Leonardo Borda &#187; AIX</title>
	<atom:link href="http://www.leonardoborda.com/blog/tag/aix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leonardoborda.com/blog</link>
	<description>A bit of everything and answers that really work!</description>
	<lastBuildDate>Thu, 15 Jul 2010 16:14:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to configure ntp client on AIX 5.3</title>
		<link>http://www.leonardoborda.com/blog/how-to-configure-ntp-client-on-aix-5-3/</link>
		<comments>http://www.leonardoborda.com/blog/how-to-configure-ntp-client-on-aix-5-3/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 13:08:24 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[AIX]]></category>
		<category><![CDATA[ntp]]></category>

		<guid isPermaLink="false">http://www.leonardoborda.com/blog/?p=166</guid>
		<description><![CDATA[I have found it on the IBM website: http://www-01.ibm.com/support/docview.wss?uid=isg3T1000653 
PS: After configured it takes some time ( around 3-5 minutes ) to synchronize the time, so don&#8217;t worry it will work.
On client
1. Verify that you have a server suitable for synchronization. Enter:
# ntpdate -d ip.address.of.server
The offset must be less than 1000 seconds for xntpd to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I have found it on the IBM website: <a href="http://www-01.ibm.com/support/docview.wss?uid=isg3T1000653">http://www-01.ibm.com/support/docview.wss?uid=isg3T1000653 </a></p>
<p style="text-align: left;">PS: After configured it takes some time ( around 3-5 minutes ) to synchronize the time, so don&#8217;t worry it will work.</p>
<p style="text-align: left;">On client</p>
<p style="text-align: left;">1. Verify that you have a server suitable for synchronization. Enter:</p>
<p style="text-align: left;"># ntpdate -d ip.address.of.server</p>
<p style="text-align: left;">The offset must be less than 1000 seconds for xntpd to synch. If the offset is greater than 1000 seconds, change the time manually on the client and run the ntpdate -d again.</p>
<p style="text-align: left;">If you get the message, &#8220;no server suitable for synchronization found&#8221;, verify xntpd is running on the server (see above) and that no firewalls are blocking port 123.<br />
2. Specify your xntp server in /etc/ntp.conf, enter:</p>
<p style="text-align: left;"># vi /etc/ntp.conf</p>
<p style="text-align: left;">(Comment out the &#8220;broadcastclient&#8221; line and add server ip.address.of.server prefer.)</p>
<p style="text-align: left;">Leave the driftfile and tracefile at their defaults.<br />
3. Start the xntpd daemon:</p>
<p style="text-align: left;"># startsrc -s xntpd</p>
<p style="text-align: left;">(Use the -x flag if it is appropriate for your environment.)</p>
<p style="text-align: left;">4. Uncomment xntpd from /etc/rc.tcpip so it will start on a reboot.</p>
<p style="text-align: left;"># vi /etc/rc.tcpip</p>
<p style="text-align: left;">Uncomment the following line:</p>
<p style="text-align: left;">start /usr/sbin/xntpd &#8220;$src_running&#8221;</p>
<p style="text-align: left;">If using the -x flag, add &#8220;-x&#8221; to the end of the line. You must include the quotes around the -x.</p>
<p style="text-align: left;">5. Verify that the client is synched.</p>
<p style="text-align: left;"># lssrc -ls xntpd</p>
<p style="text-align: left;">NOTE: Sys peer should display the IP address or name of your xntp server. This process may take up to 12 minutes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardoborda.com/blog/how-to-configure-ntp-client-on-aix-5-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to start daemons at the system startup in AIX servers</title>
		<link>http://www.leonardoborda.com/blog/how-to-start-daemons-at-the-system-startup-in-aix-servers/</link>
		<comments>http://www.leonardoborda.com/blog/how-to-start-daemons-at-the-system-startup-in-aix-servers/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 03:41:19 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[AIX]]></category>

		<guid isPermaLink="false">http://www.leonardoborda.com/blog/?p=108</guid>
		<description><![CDATA[AIX 5.3

1. Create a rc.local file in /etc/
2. Apply proper permissions
a.    chown root:sys /etc/rc.local
b.    chmod 744 /etc/rc.local
3. Add an entry in /etc/inittab so whenever the server is rebooted the script will be started.
a. mkitab -i rcnfs "rclocal:2:wait:/etc/rc.local &#62; /dev/console 2&#62;&#38;1"
4. add your services to rc.local
]]></description>
			<content:encoded><![CDATA[<pre><strong>AIX 5.3</strong>

1. Create a rc.local file in /etc/
2. Apply proper permissions
a.    chown root:sys /etc/rc.local
b.    chmod 744 /etc/rc.local
3. Add an entry in /etc/inittab so whenever the server is rebooted the script will be started.
a. mkitab -i rcnfs "rclocal:2:wait:/etc/rc.local &gt; /dev/console 2&gt;&amp;1"
4. add your services to rc.local</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardoborda.com/blog/how-to-start-daemons-at-the-system-startup-in-aix-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AIX How to make arrows work in AIX</title>
		<link>http://www.leonardoborda.com/blog/aix-how-to-make-arrows-work-in-aix/</link>
		<comments>http://www.leonardoborda.com/blog/aix-how-to-make-arrows-work-in-aix/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 03:39:37 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[AIX]]></category>

		<guid isPermaLink="false">http://www.leonardoborda.com/blog/?p=106</guid>
		<description><![CDATA[Just add the following entries in your /home/username/.profile
alias __A=`echo &#8220;\020&#8243;`
alias __B=`echo &#8220;\016&#8243;`
alias __C=`echo &#8220;\006&#8243;`
alias __D=`echo &#8220;\002&#8243;`
alias __H=`echo &#8220;\001&#8243;`
set -o emacs
]]></description>
			<content:encoded><![CDATA[<p>Just add the following entries in your /home/username/.profile</p>
<p>alias __A=`echo &#8220;\020&#8243;`<br />
alias __B=`echo &#8220;\016&#8243;`<br />
alias __C=`echo &#8220;\006&#8243;`<br />
alias __D=`echo &#8220;\002&#8243;`<br />
alias __H=`echo &#8220;\001&#8243;`<br />
set -o emacs</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardoborda.com/blog/aix-how-to-make-arrows-work-in-aix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cannot copy more than 1 Gb file in AIX</title>
		<link>http://www.leonardoborda.com/blog/cannot-copy-more-than-1-gb-file-in-aix/</link>
		<comments>http://www.leonardoborda.com/blog/cannot-copy-more-than-1-gb-file-in-aix/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 03:38:14 +0000</pubDate>
		<dc:creator>Leo</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[AIX]]></category>

		<guid isPermaLink="false">http://www.leonardoborda.com/blog/?p=104</guid>
		<description><![CDATA[You have to change you limits
1. Open /etc/security/limits and assign to your username thw following:
oracle:
fsize = -1
core = -1
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1
http://www.leonardoborda.com
]]></description>
			<content:encoded><![CDATA[<p>You have to change you limits</p>
<p>1. Open /etc/security/limits and assign to your username thw following:<br />
oracle:<br />
fsize = -1<br />
core = -1<br />
cpu = -1<br />
data = -1<br />
rss = -1<br />
stack = -1<br />
nofiles = -1</p>
<p>http://www.leonardoborda.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leonardoborda.com/blog/cannot-copy-more-than-1-gb-file-in-aix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
