<?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>David Dietrich&#039;s Business Technology Blog &#187; IBM</title>
	<atom:link href="http://www.daviddietrich.com/tag/ibm/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.daviddietrich.com</link>
	<description>Business Technology Tips</description>
	<lastBuildDate>Mon, 05 Sep 2011 11:58:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Using Verifone RiTA software with IBM WAS</title>
		<link>http://www.daviddietrich.com/2010/02/22/using-verifon-rita-software-with-ibm-was/</link>
		<comments>http://www.daviddietrich.com/2010/02/22/using-verifon-rita-software-with-ibm-was/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 21:53:32 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Payment Systems]]></category>
		<category><![CDATA[WebSphere]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[verifone rita]]></category>
		<category><![CDATA[was]]></category>

		<guid isPermaLink="false">http://www.daviddietrich.com/?p=285</guid>
		<description><![CDATA[If you are running the RiTA software by Verifone, you may encounter a number of issues configuring the software to work in an IBM WebSphere environment. There are two issues you want to avoid: Not being able to find the tid.jcc file Not having the .jar files in the correct location First, the tid.jcc needs [...]]]></description>
			<content:encoded><![CDATA[<p>If you are running the RiTA software by Verifone, you may encounter a number of issues configuring the software to work in an IBM WebSphere environment. There are two issues you want to avoid:</p>
<ul>
<li>Not being able to find the tid.jcc file</li>
<li>Not having the .jar files in the correct location</li>
</ul>
<p>First, the tid.jcc needs to be in the default server directory for IBM WAS. On Linux, this will most likely be the /opt/IBM/WebSphere/AppServer/profiles/AppSrv01 directory.</p>
<p>To add the tid.jcc reference, you will want to link it from your RiTA installation directory (the default directory being /opt/rita). Run these commands:</p>
<p><strong>&gt;cd /opt/IBM/WebSphere/AppServer/profiles/AppSrv01<br />
&gt;ln -s /opt/rita/tid.jcc</strong></p>
<p>Next, you will need to link all of the RiTA .jar files to your extensions directory in the Java Runtime Engine. Run these commands:</p>
<p><strong>&gt;cd /opt/IBM/WebSphere/AppServer/java/jre/lib/ext<br />
&gt;find /opt/rita/lib/rita -name &#8216;*.jar&#8217; -exec ln -s {} \;</strong></p>
<p>You will now have symbolic links to all of the RiTA .jar files and it will be accessible to WebSphere and all other Java applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.daviddietrich.com/2010/02/22/using-verifon-rita-software-with-ibm-was/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the host name in IBM WAS</title>
		<link>http://www.daviddietrich.com/2009/06/18/changing-the-host-name-in-ibm-was/</link>
		<comments>http://www.daviddietrich.com/2009/06/18/changing-the-host-name-in-ibm-was/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 23:05:42 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[WebSphere]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[was]]></category>

		<guid isPermaLink="false">http://www.daviddietrich.com/?p=126</guid>
		<description><![CDATA[Many times in a virtual environment, it is advantageous to be able to change the host name. But if you have a virtual guest with IBM WAS installed, cloning the guest may result in the new guest being unable to stop the server, run CORBA properly, or gain access to your message queues within WAS. [...]]]></description>
			<content:encoded><![CDATA[<p>Many times in a virtual environment, it is advantageous to be able to change the host name. But if you have a virtual guest with IBM WAS installed, cloning the guest may result in the new guest being unable to stop the server, run CORBA properly, or gain access to your message queues within WAS. Therefore, you need to reset the host name for WAS.</p>
<p>To do this, go to the wsadmin.sh prompt. If you don&#8217;t know where wsadmin.sh is, run <strong>&gt;locate wsadmin.sh</strong>. Then change directory (cd) into the directory that locate returned. To start WAS admin, type the following commands (assuming your server is called server1 and the node is named oldMachineNameNode01):</p>
<p><strong>./wsadmin.sh -profile server1 -lang jacl</strong></p>
<p>Once inside the WAS admin tool, run the following commands:</p>
<p><strong>wsadmin&gt;$AdminTask changeHostName { -nodeName oldMachineNameNode01 -hostName newwasVMmachineName };<br />
wsadmin&gt;$AdminConfig save<br />
wsadmin&gt;exit</strong></p>
<p>Restart WAS, and your new machine name should work fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.daviddietrich.com/2009/06/18/changing-the-host-name-in-ibm-was/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating a database option in DB2</title>
		<link>http://www.daviddietrich.com/2009/05/20/updating-a-database-option-in-db2/</link>
		<comments>http://www.daviddietrich.com/2009/05/20/updating-a-database-option-in-db2/#comments</comments>
		<pubDate>Thu, 21 May 2009 02:58:40 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[db2]]></category>
		<category><![CDATA[IBM]]></category>

		<guid isPermaLink="false">http://www.daviddietrich.com/?p=119</guid>
		<description><![CDATA[Sometimes after a database has been created, you may want to move where the default log path is. Or you may want to change  DB2 places the log path in the home directory, and you may want to have the logs stored on another storage device. Login as the DB2 adminstrative user, then type the [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes after a database has been created, you may want to move where the default log path is. Or you may want to change  DB2 places the log path in the home directory, and you may want to have the logs stored on another storage device.</p>
<p>Login as the DB2 adminstrative user, then type the following command to change your log path:</p>
<p><strong>&gt; db2 UPDATE DB CFG FOR MyDB USING &lt;OptionName &#8211; ex., </strong><strong>NEWLOGPATH</strong><strong>&gt; &lt;Value &#8211; ex., /db2data/AnyDirectory/NODE0000/logdir&gt;</strong></p>
<p>Stop and restart DB2 (<strong>db2stop force</strong> and <strong>db2start</strong>). Your new log path is now active.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.daviddietrich.com/2009/05/20/updating-a-database-option-in-db2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating the log path in DB2</title>
		<link>http://www.daviddietrich.com/2009/05/20/updating-the-log-path-in-db2/</link>
		<comments>http://www.daviddietrich.com/2009/05/20/updating-the-log-path-in-db2/#comments</comments>
		<pubDate>Wed, 20 May 2009 23:25:07 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[db2]]></category>
		<category><![CDATA[IBM]]></category>

		<guid isPermaLink="false">http://www.daviddietrich.com/?p=114</guid>
		<description><![CDATA[Sometimes after a database has been created, you may want to move where the default log path is. DB2 places the log path in the home directory, and you may want to have the logs stored on another storage device. Login as the DB2 adminstrative user, then type the following command to change your log [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes after a database has been created, you may want to move where the default log path is. DB2 places the log path in the home directory, and you may want to have the logs stored on another storage device.</p>
<p>Login as the DB2 adminstrative user, then type the following command to change your log path:</p>
<p><strong>&gt; db2 UPDATE DB CFG FOR MyDB USING NEWLOGPATH /db2data/AnyDirectory/NODE0000/logdir</strong></p>
<p>Stop and restart DB2 (<strong>db2stop force</strong> and <strong>db2start</strong>) and the your new log path will now be active.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.daviddietrich.com/2009/05/20/updating-the-log-path-in-db2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropping a DB2 database</title>
		<link>http://www.daviddietrich.com/2009/02/12/dropping-a-db2-database/</link>
		<comments>http://www.daviddietrich.com/2009/02/12/dropping-a-db2-database/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 21:39:26 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[db2]]></category>
		<category><![CDATA[IBM]]></category>

		<guid isPermaLink="false">http://www.daviddietrich.com/?p=75</guid>
		<description><![CDATA[Normally, to drop a database in DB2, you run the following command: &#62;db2 drop db YourDb If you run into errors trying to drop the database, you may need to recatalog the database. You can run the following series of commands: &#62;db2 uncatalog db YourDb &#62;db2 catalog database Restart DB2. Then run: &#62;db2 drop db [...]]]></description>
			<content:encoded><![CDATA[<p>Normally, to drop a database in DB2, you run the following command:</p>
<p><strong>&gt;db2 drop db YourDb</strong></p>
<p>If you run into errors trying to drop the database, you may need to recatalog the database. You can run the following series of commands:</p>
<p><strong>&gt;db2 uncatalog db YourDb<br />
&gt;db2 catalog database</strong></p>
<p>Restart DB2.</p>
<p>Then run:</p>
<p><strong>&gt;db2 drop db YourDb</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.daviddietrich.com/2009/02/12/dropping-a-db2-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing a DB2 server name</title>
		<link>http://www.daviddietrich.com/2009/02/11/changing-db2-server-name/</link>
		<comments>http://www.daviddietrich.com/2009/02/11/changing-db2-server-name/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 23:57:51 +0000</pubDate>
		<dc:creator>David Dietrich</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[db2]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.daviddietrich.com/?p=68</guid>
		<description><![CDATA[If you find DB2 not being able to start because of a server name problem, it most likely is caused by moving a virtual machine and not renaming the DB2 database. To update DB2 to the proper name: Stop DB2 as administrator (db2inst user). &#62;su &#8211; db2inst &#62;db2stop If there are open database connections, then [...]]]></description>
			<content:encoded><![CDATA[<p>If you find DB2 not being able to start because of a server name problem, it most likely is caused by moving a virtual machine and not renaming the DB2 database.</p>
<p>To update DB2 to the proper name:</p>
<ol>
<li>Stop DB2 as administrator (db2inst user).<br />
<strong>&gt;su &#8211; db2inst<br />
&gt;db2stop<br />
</strong>If there are open database connections, then force them off.<br />
<strong>&gt;db2stop force</strong></li>
<li>Go to the <strong>sqllib</strong> directory.</li>
<li>Edit the <strong>db2nodes.cfg</strong> file. The file is usually read-only, so make enable writing first.<br />
<strong>&gt;chmod u+w db2nodes.cfg<br />
&gt;vi db2nodes.cfg</strong></li>
<li>In the db2nodes.cfg file, rename the existing computer name to that of the new computer name.</li>
<li>Save the file.</li>
<li>Reset the permissions to read-only.<br />
<strong>&gt;chmod u-w db2nodes.cfg</strong></li>
<li>Start DB2.<br />
<strong>&gt;db2start</strong></li>
</ol>
<p>You should no longer see any error messages about finding the database.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.daviddietrich.com/2009/02/11/changing-db2-server-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

