<?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>聚沙成塔-小哈的记事薄 &#187; fix</title>
	<atom:link href="http://www.hashei.me/tag/fix/feed" rel="self" type="application/rss+xml" />
	<link>http://www.hashei.me</link>
	<description>一个系统工程师的絮叨</description>
	<lastBuildDate>Tue, 10 Jan 2012 18:03:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		
<!-- Start Of Script Generated By WP-PostViews Plus -->
<script type='text/javascript' src='http://hashei.me/wp-includes/js/jquery/jquery.js?ver=1.3.2'></script>
<script type="text/javascript">
/* <![CDATA[ */
jQuery.ajax({type:'GET',url:'http://hashei.me/wp-content/plugins/wp-postviews-plus/postviews_plus.php',data:'todowppvp=add&type=tag&id=172_1',cache:false,dataType:'script'});
/* ]]> */
</script>
<!-- End Of Script Generated By WP-PostViews Plus -->
	<item>
		<title>AIX环境下安装DB2 9.1及Inforsphere information integrator</title>
		<link>http://www.hashei.me/2009/11/install_db2v9-1.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=install_db2v9-1</link>
		<comments>http://www.hashei.me/2009/11/install_db2v9-1.html#comments</comments>
		<pubDate>Mon, 30 Nov 2009 13:58:00 +0000</pubDate>
		<dc:creator>hashei</dc:creator>
				<category><![CDATA[IBM产品]]></category>
		<category><![CDATA[DB2]]></category>
		<category><![CDATA[Federation Server]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[Infosphere information Integrator]]></category>

		<guid isPermaLink="false">http://www.hashei.me/2009/11/install_db2v9-1.html</guid>
		<description><![CDATA[介绍了在AIX下安装DB2 9.1版本，从准备操作补丁到修改内核参数，安装完整数据库。安装完DB2后安装DB2 Infosphere information Integrator（也就是之前的WebSphere Information Integrator）中的Replication Server。]]></description>
			<content:encoded><![CDATA[<p><b></b></p>
<p>曾经的这篇《WebSphere Information Integrator安装过程》是windows下的安装过程，图片么google相册被挡住了，我也懒得再改。</p>
<p>这次是在AIX下安装DB2 9.1版本，从准备操作补丁到修改内核参数，安装完整数据库。安装完DB2后安装<strong>DB2</strong> <strong>Infosphere information Integrator</strong>（也就是之前的<em>WebSphere Information Integrator</em>）中的Replication Server。</p>
<h3><b>DB2</b><b>数据库安装准备</b></h3>
<p>1、使用bootinfo –K来确认是否是64位内核。如果没有请按以下内容更改：</p>
<p>要切换至 64 位内核，需要 root 用户权限并应输入下列命令：</p>
<p>ln -sf /usr/lib/boot/unix_64 /unix</p>
<p>ln -sf /usr/lib/boot/unix_64 /usr/lib/boot/unix</p>
<p>bosboot -a</p>
<p>shutdown –Fr</p>
<p>2、安装操作补丁：</p>
<p>xlC.rte 8.0.0.4和 xlC.aix50.rte 8.0.0.8</p>
<ul>
<li>技术级别（TL）5300-04 和 Service Pack (SP) 5300-04-02 及以上</li>
</ul>
<p>在操作系统光盘可以找到安装，如果没有的话可以到IBM网站下载</p>
<p> <span id="more-878"></span>
</p>
<p>3、建文件系统：</p>
<p><b>Lv</b><b>名称</b><b> </b><b>文件系统</b><b> </b><b>描述</b><b> </b><b>大小</b><b></b></p>
<p><b>数据库文件安装在</b><b> /</b><b>默认的文件系统中</b><b></b></p>
<p>db2inst1lv /home/db2inst1 文件系统用于安装DB2实例 30GB(双机环境在共享盘)</p>
<p><b>① </b>mklv –y db2inst1lv –t jfs2 rootvg 60 hdisk0</p>
<p><b>② </b>crfs –v jfs2 –d db2inst1lv –m /home/db2inst1</p>
<p>db2fenc1lv /home/db2fenc1 文件系统用于安装DB2 软件 2GB(双机环境在共享盘)</p>
<p><b>① </b>mklv –y db2fenc1lv –t jfs2 rootvg 4 hdisk0</p>
<p><b>② </b>crfs –v jfs2 –d db2fenc1lv –m /home/db2fenc1</p>
<p>backlv /db2/back 文件系统用于DB2备份 30GB</p>
<p><b>① </b>mklv –y backlv –t jfs2 rootvg 60 hdisk0</p>
<p><b>② </b>crfs –v jfs2 –d backlv –m /db2/back</p>
<p>db2softlv /db2soft 用于原始db2程序和WII软件的放置 3GB</p>
<p><b>① </b>mklv –y db2softlv –t jfs2 rootvg 6 hdisk0</p>
<p><b>② </b>crfs –v jfs2 –d db2softlv –m /db2soft</p>
<p>db2log 用于放置db2日志文件</p>
<p><b>① </b>mklv –y db2loglv –t jfs2 rootvg 6 hdisk0</p>
<p><b>② </b>crfs –v jfs2 –d db2loglv –m /db2log</p>
<p>4、建用户和组</p>
<p>l 打开系统异步IO，通过SMITTY工具将异步状态置为Available,即</p>
<p>Smitty aio来改变机器的AIO状态为available</p>
<p>The state to be configured at system restart : available（重新启动机器）</p>
<p>l 您可以通过Smitty工具来创建用户和组，也可以通过下列命令来创建： </p>
<p>（1）建组</p>
<p>mkgroup id=400 db2iadm1</p>
<p>mkgroup id=410 db2fadm1</p>
<p>mkgroup id=420 db2asgrp</p>
<p>(2) 建用户</p>
<p>mkuser id=400 pgrp=db2iadm1 groups=db2iadm1 home=/home/db2inst1 db2inst1</p>
<p>passwd db2inst1</p>
<p>mkuser id=410 pgrp=db2fadm1 groups=db2fadm1 home=/home/db2fenc1 db2fenc1 </p>
<p>passwd db2fenc1</p>
<p>mkuser id=420 pgrp=db2asgrp groups=db2asgrp home=/home/db2as db2as </p>
<p>passwd db2as</p>
<p>5、更改文件权限</p>
<p>&#160; chown -R db2inst1:db2iadm1 /home/db2inst1 </p>
<p>&#160; chown -R db2fenc1:db2fadm1 /home/db2fenc1</p>
<p>chown –R db2inst1:db2iadm1 /db2/back /db2soft /db2log</p>
<p>6、上传安装文件包到 /db2soft</p>
<p>DB2_Enterprise_Svr_Ed_AIX_5L.tar</p>
<p>RepServ_9.1_AIX5.tar</p>
<p>v9fp4a_aix_universal_fixpack.tar</p>
<p>在/db2soft 建立目录</p>
<p>mkdir db2v9</p>
<p>mkdir v9fp4a</p>
<p>解压到 db2v9 repsv v9fp4a</p>
<p>cd db2v9</p>
<p>tar –xvf /db2soft/DB2_Enterprise_Svr_Ed_AIX_5L.tar</p>
<p>cd repsv</p>
<p>tar –xvf /db2soft/ RepServ_9.1_AIX5.tar</p>
<p>cd v9fp4a</p>
<p>tar –xvf /db2soft/ v9fp4a_aix_universal_fixpack.tar</p>
<h4>7.安装DB2 cd db2v9</h4>
<p><b>./db2setup ; </b>执行安装</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image0021.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="154" alt="clip_image002" src="http://hashei.me/wp-content/uploads/2009/11/clip_image002_thumb1.jpg" width="244" border="0" /></a></p>
<p>选择db2 Enterprise Server Edition 点击 install new</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image004.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="154" alt="clip_image004" src="http://hashei.me/wp-content/uploads/2009/11/clip_image004_thumb.jpg" width="244" border="0" /></a></p>
<p>点 next</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image0061.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image006" src="http://hashei.me/wp-content/uploads/2009/11/clip_image006_thumb1.jpg" width="244" border="0" /></a></p>
<p>选择 accept 点next</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image008.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image008" src="http://hashei.me/wp-content/uploads/2009/11/clip_image008_thumb.jpg" width="244" border="0" /></a></p>
<p>选择typical-&gt;next</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image0101.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image010" src="http://hashei.me/wp-content/uploads/2009/11/clip_image010_thumb1.jpg" width="244" border="0" /></a></p>
<p>选择 install DB2 Enterprise Server Edition on this computer -&gt; next</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image0121.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image012" src="http://hashei.me/wp-content/uploads/2009/11/clip_image012_thumb1.jpg" width="244" border="0" /></a></p>
<p>指定目录/db2soft/v91 确保该目录下为空</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image014.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="182" alt="clip_image014" src="http://hashei.me/wp-content/uploads/2009/11/clip_image014_thumb.jpg" width="244" border="0" /></a></p>
<p>选择 Existing user 指定 db2as</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image016.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image016" src="http://hashei.me/wp-content/uploads/2009/11/clip_image016_thumb.jpg" width="244" border="0" /></a></p>
<p>Create a DB2 isntance</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image018.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image018" src="http://hashei.me/wp-content/uploads/2009/11/clip_image018_thumb.jpg" width="244" border="0" /></a></p>
<p>Select single partition instance</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image020.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image020" src="http://hashei.me/wp-content/uploads/2009/11/clip_image020_thumb.jpg" width="244" border="0" /></a></p>
<p>Select Existing user : db2inst1</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image022.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image022" src="http://hashei.me/wp-content/uploads/2009/11/clip_image022_thumb.jpg" width="244" border="0" /></a></p>
<p>Select Existing user : db2fenc1</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image024.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image024" src="http://hashei.me/wp-content/uploads/2009/11/clip_image024_thumb.jpg" width="244" border="0" /></a></p>
<p>Select Do not prepare the DB2 tools catalog</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image026.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image026" src="http://hashei.me/wp-content/uploads/2009/11/clip_image026_thumb.jpg" width="244" border="0" /></a></p>
<p>Select do not set up your DB2 server to send notifications at this time</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image028.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image028" src="http://hashei.me/wp-content/uploads/2009/11/clip_image028_thumb.jpg" width="244" border="0" /></a></p>
<p>finish</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image030.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image030" src="http://hashei.me/wp-content/uploads/2009/11/clip_image030_thumb.jpg" width="244" border="0" /></a></p>
<p>OK </p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image032.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="185" alt="clip_image032" src="http://hashei.me/wp-content/uploads/2009/11/clip_image032_thumb.jpg" width="244" border="0" /></a></p>
<h4>安装WII</h4>
<p>Cd repsv</p>
<p>./iisetup</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image034.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="191" alt="clip_image034" src="http://hashei.me/wp-content/uploads/2009/11/clip_image034_thumb.jpg" width="244" border="0" /></a></p>
<p>Next -&gt;next </p>
<p>Select accept-&gt;next </p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image036.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="191" alt="clip_image036" src="http://hashei.me/wp-content/uploads/2009/11/clip_image036_thumb.jpg" width="244" border="0" /></a></p>
<p>Only select websphere Replication server</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image038.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="191" alt="clip_image038" src="http://hashei.me/wp-content/uploads/2009/11/clip_image038_thumb.jpg" width="244" border="0" /></a></p>
<p>Select install the selected products</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image040.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="191" alt="clip_image040" src="http://hashei.me/wp-content/uploads/2009/11/clip_image040_thumb.jpg" width="244" border="0" /></a></p>
<p>Next -&gt; select existing db2 copy</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image042.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="191" alt="clip_image042" src="http://hashei.me/wp-content/uploads/2009/11/clip_image042_thumb.jpg" width="244" border="0" /></a></p>
<p>自动选择 /db2/db2soft/v91</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image044.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="191" alt="clip_image044" src="http://hashei.me/wp-content/uploads/2009/11/clip_image044_thumb.jpg" width="244" border="0" /></a></p>
<p>next</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image046.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="191" alt="clip_image046" src="http://hashei.me/wp-content/uploads/2009/11/clip_image046_thumb.jpg" width="244" border="0" /></a></p>
<p>Only select English</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image048.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="191" alt="clip_image048" src="http://hashei.me/wp-content/uploads/2009/11/clip_image048_thumb.jpg" width="244" border="0" /></a></p>
<p>Select do not configure any wrappers</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image050.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="191" alt="clip_image050" src="http://hashei.me/wp-content/uploads/2009/11/clip_image050_thumb.jpg" width="244" border="0" /></a></p>
<p>finish</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image052.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="191" alt="clip_image052" src="http://hashei.me/wp-content/uploads/2009/11/clip_image052_thumb.jpg" width="244" border="0" /></a></p>
<p>打补丁</p>
<p>Cd v9fp4a cd universal cd disk1 </p>
<h4>打补丁（v9fp4a_aix_universal_fixpack.tar.gz）:</h4>
<p>确认各项db2服务停止(</p>
<p>su – db2inst1</p>
<p>db2stop force</p>
<p>su – db2as </p>
<p>db2admin stop </p>
<p>，然后进入对应的路径安装补丁fp12</p>
<p><b>cd fixpack</b></p>
<p><b>./installFixPak</b> ; 此处要注意要区分大小写</p>
<p>输入路径</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image054.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="155" alt="clip_image054" src="http://hashei.me/wp-content/uploads/2009/11/clip_image054_thumb.jpg" width="244" border="0" /></a></p>
<p>/db2soft/v9.1 </p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image055.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="155" alt="clip_image055" src="http://hashei.me/wp-content/uploads/2009/11/clip_image055_thumb.jpg" width="244" border="0" /></a></p>
<p>安装结束，查看所有补丁包是否安装成功</p>
<p><a href="http://hashei.me/wp-content/uploads/2009/11/clip_image057.jpg"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="164" alt="clip_image057" src="http://hashei.me/wp-content/uploads/2009/11/clip_image057_thumb.jpg" width="244" border="0" /></a></p>
<h4>安装修订包后的任务（Linux<sup>®</sup> 和 UNIX<sup>®</sup>）</h4>
<p>安装修订包之后，必须绑定数据库实用程序和 DB2<sup>®</sup> CLI 绑定文件。根据使用的数据库产品和修订包安装方法，还可能需要更新 DB2 实例和系统目录对象、重新启动 DB2 实例和 DB2 管理服务器以及启动 djxlink 命令。</p>
<p>执行下列操作：</p>
<p>1. 如果安装了 WebSphere<sup>®</sup> Federation Server，则运行 djxlink 命令。</p>
<p>在安装修订包之后并且在运行 db2iupdt 之前，执行下列任务：</p>
<p>a. 作为 root 用户登录。</p>
<p>b. 除去或重命名文件 djxlink.out，它位于 <var>DB2DIR</var>/lib 目录中，其中 <var>DB2DIR</var> 是 DB2 安装目录。</p>
<p>c. 确保设置了当前环境或 db2dj.ini 文件中的所有相应变量。 例如，如果要使用联合服务器连接至 Oracle 数据源，则将环境变量 ORACLE_HOME 设置为 Oracle 主目录。</p>
<p>d. 运行以下命令：</p>
<pre>djxlink</pre>
<p>2. 更新实例以使用新级别的 DB2。</p>
<p>如果安装了修订包来更新现有安装，则必须执行此任务。如果安装了修订包来创建新安装，则不需要执行此任务。如果有多个 DB2 副本，则更新安装了修订包的 DB2 副本中的实例。安装修订包之后，必须更新 DB2 副本中的所有实例。</p>
<p>执行下列步骤：</p>
<p>a. 作为 root 用户登录。</p>
<p>b. 通过发出以下命令来确定与 DB2 副本关联的实例：</p>
<pre><var>DB2DIR</var>/instance/db2ilist</pre>
<p>其中 <var>DB2DIR</var> 表示 DB2 副本的安装位置。</p>
<p>c. 如果对 db2profile 或 db2cshrc 脚本进行了任何更改，则备份这些脚本或者将更改分别复制到 userprofile 和 usercshrc 脚本中。</p>
<p>因为 db2iupdt 命令会覆盖 db2profile 和 db2cshrc 脚本，所以必须执行此操作。它不会覆盖 userprofile 和 usercshrc 脚本。</p>
<p>d. 对每个实例发出以下命令：</p>
<pre><var>DB2DIR</var>/instance/db2iupdt <var>iname</var></pre>
<p>其中 <var>iname</var> 表示实例名，而 <var>DB2DIR</var> 表示 DB2 副本的安装位置。</p>
<p>e. 如果 DB2 管理服务器（DAS）属于安装了修订包的 DB2 副本，则发出以下命令：</p>
<pre><var>DB2DIR</var>/instance/dasupdt</pre>
<p>其中 <var>DB2DIR</var> 是 DB2 副本的安装位置。如果此 DB2 副本现在正以比所有其他 DB2 副本更新的修订包级别运行，则考虑更新 DAS 以便它属于此 DB2 副本。</p>
<p>3. 可选：更新数据库中的系统目录对象以支持该修订包。</p>
<p>对于 DB2 版本 9.1 修订包 2 或更新版本，如果要使用特定于该修订包的功能，则强烈建议您执行此任务。由于没有现有数据库，所以在安装了修订包来创建新安装的情况下，不需要执行此任务。</p>
<p>对 DB2 副本中的每个实例执行下列操作：</p>
<p>a. 作为实例所有者登录。</p>
<p>b. 对每个数据库发出以下命令：</p>
<pre>&#160;&#160; db2updv9 -d <var>dbname</var>&#160; </pre>
<p>其中 <var>dbname</var> 表示数据库的名称。</p>
<p>4. 重新启动实例和 DAS。</p>
<p>如果安装了修订包来更新现有安装，则必须执行此步骤。如果安装了修订包来创建新安装，则不需要执行此步骤。</p>
<p>要重新启动实例：</p>
<p>a. 作为实例所有者登录。</p>
<p>b. 发出命令 db2start。</p>
<p>对每个实例重复上述步骤。</p>
<p>要重新启动管理服务器，作为 DAS 所有者登录并运行 db2admin start 命令。</p>
<p>5. <a href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/topic/com.ibm.db2.udb.uprun.doc/doc/t0024970.htm">对绑定文件进行绑定</a></p>
<p>6. 可选：重新编译应用程序。</p>
<p>要在应用程序中利用对链接至的文件所作的任何更改，建议您重新编译该应用程序。</p>
<hr /><small>  Copyright &copy; 2008 This feed is for personal, non-commercial use only<br />
<a href=www.hashei.com >聚沙成塔-小哈的记事薄</a> by hashei 
如果喜欢，欢迎订阅<a href=feed.hashei.com >feed.hashei.com</a><br />
Digital Fingerprint:
 10f920a9f2bae51c3c73c4f5fb50a949</small>]]></content:encoded>
			<wfw:commentRss>http://www.hashei.me/2009/11/install_db2v9-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IBM WebSphere Recent Supports</title>
		<link>http://www.hashei.me/2009/09/ibm_websphere_support_tips1.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ibm_websphere_support_tips1</link>
		<comments>http://www.hashei.me/2009/09/ibm_websphere_support_tips1.html#comments</comments>
		<pubDate>Fri, 18 Sep 2009 00:42:00 +0000</pubDate>
		<dc:creator>hashei</dc:creator>
				<category><![CDATA[Websphere系列]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[websphere]]></category>

		<guid isPermaLink="false">http://www.hashei.me/2009/09/ibm_websphere_support_tips1.html</guid>
		<description><![CDATA[This note contains links to WebSphere Application Server technical support documents and information that can help you obtain value from your software. It is intended to help you to be proactive in your support and administration of WebSphere Application Server. 
In the spotlight
1. Possible security exposure with XML digital signature with IBM WebSphere Application Server [...]]]></description>
			<content:encoded><![CDATA[<p>This note contains links to WebSphere Application Server technical support documents and information that can help you obtain value from your software. It is intended to help you to be proactive in your support and administration of WebSphere Application Server. </p>
<ul>In the spotlight
<ul><b>1. Possible security exposure with XML digital signature with IBM WebSphere Application Server (PK80596 and PK80627)</b>      <br />Possible security exposure with XML digital signature       <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg21384925">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg21384925</a>      <br /><b>2. Security Exposure: WebSphere Application Server with JAX-RPC WS-Security may improperly validate UsernameTokens (PK75992)</b>      <br />JAX-RPC WS-Security may improperly validate UsernameTokens (PK75992)       <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg21367223">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg21367223</a>      <br /><b>3. Researching Known Vulnerabilities Resulting from a Scan for IBM HTTP Server       <br /></b>Concerns over security vulnerabilities for web servers. The concern may be the result of a recent security scan or PCI scan.       <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg21358695">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg21358695</a>      <br /><b>4. Webcast replay: Response Time Analysis for Databases and Web Services in WebSphere Application Server</b>      <br />Through experience working with customer performance problems with databases and web services, this WebSphere Support Technical Exchange session provides a method of analysis of the response times for database statement execution and for web services calls from the consumer to the provider.      <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg27016472">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg27016472</a>      <br /><b>5. Webcast replay: Introduction to the Java Consumability Tools and Java Guided Troubleshooting</b>      <br />Over the last 18 months a number of tools and capabilities have been released to simplify the process of monitoring and debugging Java applications. This WebSphere Support Technical Exchange is designed to introduce the tools, as well as the Java Guided Troubleshooting information which tells the users when and how to use them.      <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg27016328">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg27016328</a>      <br /><b>6. The Support Authority: Introducing the new IBM Support Portal</b>      <br />The IBM® Support Portal is the latest addition to the portfolio of self-help tools for IBM software. With its new look and feel, you get an unprecedented and consistent support interface for all IBM products &#8212; which you can customize to suit your specific support needs. This article introduces you to all its new features, plus gives you the latest IBM Support news.      <br /><a href="http://www.ibm.com/developerworks/websphere/techjournal/0907_supauth/0907_supauth.html?acss=was091709">http://www.ibm.com/developerworks/websphere/techjournal/0907_supauth/0907_supauth.html?acss=was091709</a>      <br /><b>7. The Support Authority: What’s new in IBM Support Assistant V4.1</b>      <br />IBM Support Assistant is a free serviceability workbench provided by IBM to facilitate self-help diagnostics for software problems. This article provides an overview of the newest features included in the IBM Support Assistant Workbench and Agent V4.1 software offerings.      <br /><a href="http://www.ibm.com/developerworks/websphere/techjournal/0906_supauth/0906_supauth.html?acss=was091709">http://www.ibm.com/developerworks/websphere/techjournal/0906_supauth/0906_supauth.html?acss=was091709</a>      <br /><b>8. Common questions about the web server Plug-in       <br /></b>In the web server Plug-in, what do the following options mean and what are the recommended settings for these options? LoadBalanceWeight; MaxConnections; ConnectTimeout; ServerIOTimeout      <br />What affect does Session Affinity have?      <br />How are connections handled during Plug-in Fail-over?      <br />Are more than one instance of the plugin loaded by the web server? If so, do the plugin instances share information with each other?       <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg21318463">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg21318463</a>      <br /><b>9. Configuring the WebSphere Application Server Web server plug-in for multiple Web sites</b>      <br />Internet Information Services 6.0 (IIS), which ships with Microsoft Windows 2003, allows multiple Web sites to be run within a single IIS server. Given this ability, can the WebSphere Application Server Web server plug-in be used with multiple IIS Web sites? <b>       <br /></b><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg21328944">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg21328944</a>      <br /><b>10. PK90452: Session affinity fails when using URL rewrite and HTTP plug-in</b>      <br />Session affinity using URL rewrite fails when plug-in fails to correctly extract cloneID from the URL.      <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg1PK90452">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg1PK90452</a>      <br /><b>11. Tuning IBM HTTP Server to maximize the number of client connections to WebSphere Application Server</b>      <br />Out of the box, IBM HTTP Server supports a maximum of 600 concurrent connections. Performance will suffer if load dictates more concurrent connections, as incoming requests will be queued up by the host operating system. You can increase the number of maximum connections allowed by IBM HTTP Server by editing the httpd.conf file.       <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=177&amp;uid=swg21167658">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=177&amp;uid=swg21167658</a>      <br /><b>12. Intermittent delay returning response to a client request when ServerIOTimeout is set to non-zero value</b>      <br />When customer uses a non-zero value for the ServerIOTimeout option, responses to client requests are intermittently taking an excessive amout of time to be returned to the client. In fact the responses are being returned when the ServerIOTimeout value pops.
<ul>
<li>PK89949 (Multi-platforms):         <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg1PK89949">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg1PK89949</a></li>
<li>PK82147 (z/OS):          <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg1PK82147">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg1PK82147</a></li>
</ul>
</ul>
<p> Plan
<ul><b>1. Recommended fixes for WebSphere Application server</b>      <br />A comprehensive list of recommended, generally available (GA) fixes for IBM WebSphere Application Server releases.      <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg27004980">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg27004980</a>      <br /><b>2. Latest fix packs for WebSphere Application Server</b>      <br />A list of the latest available fix packs for IBM WebSphere Application Server releases (Base, Express, Network Deployment).       <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg27009661">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg27009661</a>      <br /><b>3. Detailed system requirements for WebSphere Application Server</b>      <br />Identifies the supported software options by operating system for the WebSphere Application Server product.      <br /><a href="http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg27006921">http://www.ibm.com/support/docview.wss?acss=was091709&amp;rs=180&amp;uid=swg27006921</a></ul>
<p>Education
<ul><b>1. Technical Exchange Webcasts</b>      <br />Take full advantage of your product. Join us as technical experts share their knowledge and then answer your questions. Visit this site often to see upcoming topics.       <br /><a href="http://www.ibm.com/software/websphere/support/supp_tech.html?acss=was091709">http://www.ibm.com/software/websphere/support/supp_tech.html?acss=was091709</a>      <br /><b>2. Self-Assist Resources and Tools</b>      <br />Find out how online software support tools and resources can save you time, keep you informed, provide training, and help streamline your support experience!      <br /><a href="http://www.ibm.com/software/websphere/support/d2w.html?acss=was091709">http://www.ibm.com/software/websphere/support/d2w.html?acss=was091709</a>      <br /><b>3. developerWorks WebSphere Application Server zone</b>      <br />Access the developerWorks page for downloads, learning resources and more.      <br /><a href="http://www.ibm.com/developerworks/websphere/zones/was/?ca=dnb-was091709">http://www.ibm.com/developerworks/websphere/zones/was/?ca=dnb-was091709</a></ul>
</ul>
<hr /><small>  Copyright &copy; 2008 This feed is for personal, non-commercial use only<br />
<a href=www.hashei.com >聚沙成塔-小哈的记事薄</a> by hashei 
如果喜欢，欢迎订阅<a href=feed.hashei.com >feed.hashei.com</a><br />
Digital Fingerprint:
 10f920a9f2bae51c3c73c4f5fb50a949</small>]]></content:encoded>
			<wfw:commentRss>http://www.hashei.me/2009/09/ibm_websphere_support_tips1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

