<?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"
>

<channel>
	<title>as4</title>
	<atom:link href="http://www.kods.net/feed/tag/as4/" rel="self" type="application/rss+xml" />
	<link>http://www.kods.net/</link>
	<description>as4</description>
	<pubDate>Fri, 30 Jul 2010 04:07:41+0000</pubDate>
	<generator>http://www.kods.net/</generator>
	<language>en</language>
		<item>
		<title>Modify the parameters of a process share pool</title>
		<link>http://www.kods.net/modify-the-parameters-of-a-process-share-pool/</link>
		<comments>http://www.kods.net/modify-the-parameters-of-a-process-share-pool/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 09:40:34+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[sid]]></category>
<category><![CDATA[parameters]]></category>
<category><![CDATA[pool size]]></category>
<category><![CDATA[node]]></category>
<category><![CDATA[max size]]></category>
<category><![CDATA[scope]]></category>
<category><![CDATA[latch]]></category>
<category><![CDATA[contention]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[phenomenon]]></category>
<category><![CDATA[system environment]]></category>
<category><![CDATA[rac]]></category>
<category><![CDATA[database problem]]></category>
<category><![CDATA[time share]]></category>
<category><![CDATA[available memory]]></category>
<category><![CDATA[inbound connection]]></category>
<category><![CDATA[pool volume]]></category>
<category><![CDATA[pool system]]></category>
<category><![CDATA[great time]]></category>
		<guid isPermaLink="true">http://www.kods.net/modify-the-parameters-of-a-process-share-pool/</guid>
		<description><![CDATA[System environment: redhat-as4.7 oracle10.2.0.4-RAC Why changes? Recent applications have three temporary database problem can not connect, check all nodes alter the log each time a problem was found when a node is recorded alarm log: Tue Jul 6 14:44 ...]]></description>
		<content:encoded><![CDATA[System environment: <br /> redhat-as4.7 <br /> oracle10.2.0.4-RAC <br /><br /> Why changes? <br /> Recent applications have three temporary database problem can not connect, check all nodes alter the log each time a problem was found when a node is recorded alarm log: <br /> Tue Jul 6 14:44:54 2010 <br /> WARNING: inbound connection timed out (ORA-3136) <br /><br /> The analysis of awr report found problems with time share pool in the sql area each time doing a different amount of adjustment of a larger, share pool volume being adjusted, top 5 event which is latch: library cache and latch: shared pool episodes, by the experts to analyze the reasons, a great time to visit because of the possibility of greater than, as too much memory sql statements competition, resulting in serious contention on the latch, sga memory had to be adjusted to meet At that time the load. The automatic adjustment process in the sga connection is bound to break, so will the problems mentioned above phenomenon. <br /> Experts suggest to manually set the share pool and the db cache to a reasonable value. The analysis awr report here that the db cache is not a big change, not adjusted for the time being. <br /><br /> Method: <br /><br /> To sys user login rac, perform the following three commands: <br /><br /> Modify the maximum available memory sga <br /> alter system set sga_max_size = 3600M scope = spfile sid =&#39;*&#39;; <br /> Modify sga automatically adjust the amount of memory can not be greater than sga_max_size <br /> alter system set sga_target = 3600M scope = spfile sid =&#39;*&#39;; <br /> Changes shared_pool_size <br /> alter system set shared_pool_size = 1850M scope = spfile sid =&#39;*&#39;; <br /><br /> Then reboot each node, respectively. <br /><br /> Analysis: <br /> 1, each node of my biggest rac sga memory sga_max_size originally 3000M, according to my report on the analysis of several issues awr, share pool to use the history of the largest 1792M, db cache maximum use to the 1700M, so need to first adjust the maximum sga memory sga_max_size. <br /> SQL&gt; show parameter sga; <br /><br /> NAME TYPE VALUE <br /> ------------------------------------ ----------- --- --------------------------- <br /> lock_sga boolean FALSE <br /> pre_page_sga boolean FALSE <br /> sga_max_size big integer 3008M <br /> sga_target big integer 3008M <br /> SQL&gt; <br /><br /> 2, adjust sga_max_size and sga_target process, I first use the scope = both or scope = pfile parameter to perform, but always error: <br /> SQL&gt; alter system set sga_max_size = 3500M scope = both sid = &#39;racdb1&#39;; <br /> alter system set sga_max_size = 3500M scope = both sid = &#39;racdb1&#39; <br /> * <br /> ERROR at line 1: <br /> ORA-02095: specified initialization parameter cannot be modified <br /><br /> SQL&gt; alter system set sga_max_size = 3500M scope = pfile sid = &#39;racdb1&#39;; <br /> alter system set sga_max_size = 3500M scope = both sid = &#39;racdb1&#39; <br /> * <br /> ERROR at line 1: <br /> ORA-02095: specified initialization parameter cannot be modified <br /><br /> So the test machine for testing, testing machine is a stand-alone, no problem implementing the three parameters, first modify the scope = spfile, then use <br /> create pfile = &#39;path / init name&#39; from spfile <br /> Want to create a pfile spfile look. <br /> Create pfile pfile and find the content than the more comprehensive than the original, so the production machine by modifying sga before creating a pfile spfile check the parameters of the production machine configuration, but encountered a problem: <br /><br /> SQL&gt; create pfile = &#39;/ opt/oracle/app/admin/racdb/pfile/init.ora.3102009154459-spfile-create&#39; from spfile; <br /> create pfile = &#39;/ opt/oracle/app/admin/racdb/pfile/init.ora.3102009154459-spfile-create&#39; from spfile <br /> * <br /> ERROR at line 1: <br /> ORA-27037: unable to obtain file status <br /> Linux-x86_64 Error: 2: No such file or directory <br /> Additional information: 3 <br /> These are like the definition with a new name pfile, error <br /><br /> SQL&gt; create pfile = &#39;/ opt/oracle/app/admin/racdb/pfile/init.ora.3102009154459&#39; from spfile; <br /> create pfile = &#39;/ opt/oracle/app/admin/racdb/pfile/init.ora.3102009154459&#39; from spfile <br /> * <br /> ERROR at line 1: <br /> ORA-27037: unable to obtain file status <br /> Linux-x86_64 Error: 2: No such file or directory <br /> Additional information: 3 <br /> Pfile name of the original creation, covering the original error pfile <br /><br /> SQL&gt; create pfile = &#39;/ oradata1/racdb/init.racdb1.ora&#39; from spfile; <br /> create pfile = &#39;/ oradata1/racdb/init.racdb1.ora&#39; from spfile <br /> * <br /> ERROR at line 1: <br /> ORA-27037: unable to obtain file status <br /> Linux-x86_64 Error: 2: No such file or directory <br /> Additional information: 3 <br /> In each node to create a shared disk, or error <br /><br /> The search to find an article: http://space.itpub.net/519536/viewspace-666453 <br /><br /> ************************************************** ***************** <br /><br /> In the RAC environment, do not use easily &quot;create pfile from spfile;&quot; command to create PFILE.<br /> Because in the RAC environment, by default, the SPFILE will be placed on shared storage (raw device or ASM disk group on), RAC of each host is to use the PFILE to point on the way to complete the SPFILE SPFILE location of the. <br /> By using the &quot;create pfile from spfile;&quot; command to create PFILE, the new generation of PFILE will cover the existing dbs directory PFILE, since database instance startup will no longer be read on the shared storage SPFILE, instead read local PFILE file. <br /><br /> 1. By default, $ ORACLE_HOME / dbs directory PFILE initracdb.ora record only a single line, record the SPFILE path to point to. <br /> / Oracle/app/oracle/product/10.2.0/db_1/dbs $ cat initracdb1.ora <br /> spfile = + DATA / racdb / spfileracdb.ora <br /><br /> 2. At this time parameter can be obtained from the database using SPFILE now start the database <br /> SQL&gt; show parameter spfile <br /> NAME TYPE VALUE <br /> --------------- ----------- ------------------------ ------ <br /> spfile string + DATA / racdb / spfileracdb.ora <br /><br /> 3. At this point if you use &quot;create pfile from spfile;&quot; command to create PFILE, SPFILE original PFIEL point in the database specific parameters will be replaced. <br /> When the database starts again when, because they can not find the SPFILE to location, will use the PFILE 文件 specific parameter values recorded in the boot to complete the database, this will give a database management bring more influence, Buzai enjoy the convenient parameter SPFILE . <br /><br /> 4. SUMMARY This article describes a common-sense and I hope everyone in the RAC database maintenance and management of the process should not take unnecessary trouble for himself. <br /> If there is such a problem how to handle it? Method is simple, the PFILE with the SPFILE restore the contents of the content can point to, perhaps in specific scenarios need to re-create the SPFILE. <br /><br /> ************************************************** **************** <br /><br /> So that, see my db1 node (or more operations are performed in db1): <br /> SQL&gt; show parameter spfile; <br /><br /> NAME TYPE VALUE <br /> ------------------------------------ ----------- --- --------------------------- <br /> spfile string <br /><br /> And she was using its own node pfile file, which is what I want them to turn over a similar setting as before, but by creating pfile spfile has been error, can not figure out what the reasons may be 10G limit? <br /><br /> Method modified according to the article after $ ORACLE_HOME/dbs/initracdb1.ora, the corresponding reference db2 file edits: <br /> SQL&gt; show parameter spfile; <br /><br /> NAME TYPE VALUE <br /> ------------------------------------ ----------- --- --------------------------- <br /> spfile string / oradata1/racdb/spfileracdb.or <br /> a <br /><br /> Everything is in order to sys user login rac, implementation of the revised method of share pool the three orders, no error, and then restart the node, respectively, to complete. <br /> After rebooting check: <br /><br /> SQL&gt; show parameter sga; <br /><br /> NAME TYPE VALUE <br /> ------------------------------------ ----------- --- --------------------------- <br /> lock_sga boolean FALSE <br /> pre_page_sga boolean FALSE <br /> sga_max_size big integer 3600M <br /> sga_target big integer 3600M <br /> SQL&gt; show parameter size; <br /><br /> NAME TYPE VALUE <br /> ------------------------------------ ----------- --- --------------------------- <br /> bitmap_merge_area_size integer 1048576 <br /> create_bitmap_area_size integer 8388608 <br /> db_16k_cache_size big integer 0 <br /> db_2k_cache_size big integer 0 <br /> db_32k_cache_size big integer 0 <br /> db_4k_cache_size big integer 0 <br /> db_8k_cache_size big integer 0 <br /> db_block_size integer 8192 <br /> db_cache_size big integer 0 <br /> db_keep_cache_size big integer 0 <br /> db_recovery_file_dest_size big integer 0 <br /><br /> NAME TYPE VALUE <br /> ------------------------------------ ----------- --- --------------------------- <br /> db_recycle_cache_size big integer 0 <br /> global_context_pool_size string <br /> hash_area_size integer 131072 <br /> java_max_sessionspace_size integer 0 <br /> java_pool_size big integer 0 <br /> large_pool_size big integer 0 <br /> max_dump_file_size string UNLIMITED <br /> object_cache_max_size_percent integer 10 <br /> object_cache_optimal_size integer 102400<br /> olap_page_pool_size big integer 0 <br /> parallel_execution_message_size integer 2152 <br /><br /> NAME TYPE VALUE <br /> ------------------------------------ ----------- --- --------------------------- <br /> sga_max_size big integer 3600M <br /> shared_pool_reserved_size big integer 97307852 <br /> shared_pool_size big integer 1856M <br /> sort_area_retained_size integer 0 <br /> sort_area_size integer 65536 <br /> streams_pool_size big integer 0 <br /> workarea_size_policy string AUTO <br /> SQL&gt; <br /> SQL&gt; exit <br /><br /> In the second process to solve a problem: <br /> When you start the database error: ORA-32004: obsolete and / or deprecated parameter (s) specified <br /><br /> Search Articles: http://www.souzz.net/html/database/ORACLE/70695.html <br /><br /> ************************************************** ********** <br /><br /> Today in the learning management archivelog encountered ORA-32004 error, the following is the solution: <br /> SQL&gt; shutdown immediate; <br /> Database closed. <br /> Database dismounted. <br /> ORACLE instance shut down. <br /> SQL&gt; startup <br /> ORA-32004: obsolete and / or deprecated parameter (s) specified <br /> ORACLE instance started. <br /> Total System Global Area 167772160 bytes <br /> Fixed Size 1218316 bytes <br /> Variable Size 71305460 bytes <br /> Database Buffers 92274688 bytes <br /> Redo Buffers 2973696 bytes <br /> Database mounted. <br /> Database opened. <br /><br /> View oracle given problem description: <br /><br /> SQL&gt; host oerr ora 32004; <br /> 32004, 00000, &quot;obsolete and / or deprecated parameter (s) specified&quot; <br /> / / * Cause: One or more obsolete and / or parameters were specified in <br /> / / The SPFILE or the PFILE on the server side. <br /> / / * Action: See alert log for a list of parameters that are obsolete. <br /> / / Or deprecated. Remove them from the SPFILE or the server <br /> / / Side PFILE. <br /><br /> To see spfile: <br /><br /> *. Log_archive_format = &#39;% t_% s_% r.dbf&#39; <br /> *. Log_archive_max_processes = 3 <br /> *. Log_archive_start = FALSE <br /> *. Log_archive_trace = 4096 <br /><br /> Then take a look at alert log file, which the following information: <br /><br /> Deprecated system parameters with specified values: <br /> log_archive_start <br /> End of deprecated system parameter listing <br /><br /> Checked to find information that is oracle 10G has not supported the argument, and when open the archive mode (archive log mode), the ARCH process is hidden automatically set. 10g, 9i, will not appear before the database is in archive mode that, but the file is not automatically set the situation up. To resolve this problem need to reset log_archive_start parameters. <br /><br /> SQL&gt; alter system reset log_archive_start SCOPE = SPFILE SID =&#39;*&#39;; <br /> System altered. <br /> SQL&gt; shutdown immediate; <br /> Database closed. <br /> Database dismounted. <br /> ORACLE instance shut down. <br /> SQL&gt; startup <br /> ORACLE instance started. <br /> Total System Global Area 167772160 bytes <br /> Fixed Size 1218316 bytes <br /> Variable Size 75499764 bytes <br /> Database Buffers 88080384 bytes <br /> Redo Buffers 2973696 bytes <br /> Database mounted. <br /> Database opened. <br /> Does not restart after a report ORA-32004 error! <br /><br /> See 10g, are those parameters are deprecated in: <br /><br /> SQL&gt; select name, description from v $ parameter where isdeprecated = &#39;TRUE&#39;; <br /> The alert log file mentioned above is located in% ORACLE_BASE% \ admin \% ORACLE_SID% \ bdump in <br /><br /> ************************************************** ******************* <br /><br /> So double-check alter the log file during startup does trace: <br /> db_name = racdb <br /> open_cursors = 300 <br /> sql_trace = FALSE <br /> pga_aggregate_target = 1073741824 <br /> Deprecated system parameters with specified values: <br /> sql_trace <br /> End of deprecated system parameter listing <br /><br /> Check the spfile rac file: <br /> [Oracle @ db1 racdb] $ cat spfileracdb.ora <br /> KK5 # + racdb2.__db_cache_size = 1577058304 <br /> racdb1.__db_cache_size = 1543503872 <br /> racdb2.__java_pool_size = 16777216 <br /> racdb1.__java_pool_size = 16777216 <br /> racdb2.__large_pool_size = 16777216 <br /> racdb1.__large_pool_size = 16777216 <br /> racdb2.__shared_pool_size = 1509949440 <br /> racdb1.__shared_pool_size = 1543503872 <br /> racdb2.__streams_pool_size = 16777216 <br /> racdb1.__streams_pool_size = 16777216 <br /> *. Archive_lag_target = 1800 <br /> *. Audit_file_dest = &#39;/ opt / oracle / app / admin / racdb / adump&#39; <br /> *. Background_dump_dest = &#39;/ opt / oracle / app / admin / racdb / bdump&#39; <br /> *. Cluster_database_instances = 2 <br /> *. Cluster_database = true <br /> *. Compatible = &#39;10 .2.0.3.0 &#39;<br /> *. Control_files = &#39;/ oradata1/racdb/control01.ctl&#39;, &#39;/ oradata1/racdb/control02.ctl&#39;, &#39;/ oradata1/racdb/control03.ctl&#39; <br /> *. Core_dump_dest = &#39;/ opt / oracle / app / admin / racdb / cdump&#39; <br /> *. Db_block_size = 8192 <br /> *. Db_domain =&#39;&#39; <br /> *. Db_file_multiblock_read_count = 16 <br /> *. Db_name = &#39;racdb&#39; <br /> *. Dispatchers = &#39;(PROTOCOL = TCP) (SERVICE = racdbXDB)&#39; <br /> racdb2.instance_number = 2 <br /> racdb1.instance_number = 1 <br /> *. Job_queue_processes = 10 <br /> *. Log_archive_dest_1 = &#39;LOCATION = / arch/racdb1&#39; <br /> racdb2.log_archive_dest_1 = &#39;LOCATION = / arch/racdb2&#39; <br /> racdb1.log_archive_dest_1 = &#39;LOCATION = / arch/racdb1&#39; <br /> racdb1.log_archive_dest_2 = &#39;service = standby lgwr async noaffirm&#39; <br /> racdb2.log_archive_dest_2 = &#39;service = standby lgwr async noaffirm&#39; <br /> *. Log_archive_dest_state_2 = &#39;enable&#39; <br /> *. Log_archive_format = &#39;% t_% s_% r.dbf&#39; <br /> *. Nls_territory = &#39;CHINA&#39; <br /> *. Open_cursors = 300 <br /> *. Pga_aggregate_target = 1073741824 <br /> *. Processes = 1000 <br /> *. Remote_listener = &#39;LISTENERS_RACDB&#39; <br /> *. Remote_login_passwordfile = &#39;exclusive&#39; <br /> *. Resource_limit = TRUE <br /> *. Sessions = 1105 <br /> *. Sga_target = 3145728000 <br /> *. Sql_trace = FALSE <br /> racdb1.standby_file_management = &#39;AUTO&#39; <br /> racdb2.standby_file_management = &#39;AUTO&#39; <br /> racdb2.thread = 2 <br /> racdb1.thread = 1 <br /> *. Timed_statistics = TRUE <br /> *. Undo_management = &#39;AUTO&#39; <br /> *. Undo_tablespace = &#39;UNDOTBS1&#39; <br /> racdb1.undo_tablespace = &#39;UNDOTBS1&#39; <br /> racdb2.undo_tablespace = &#39;UNDOTBS2&#39; <br /> *. User_dump_dest = &#39;/ oradata1 / / trace&#39; <br /> *. Utl_file_dir = &#39;/ oradata1/logmnr&#39; <br /><br /> Navigate to the *. sql_trace = FALSE, proceed as follows: <br /> [Oracle @ db1 racdb] $ sqlplus &#39;/ as sysdba&#39; <br /><br /> SQL * Plus: Release 10.2.0.4.0 - Production on Wed Jul 7 11:37:07 2010 <br /><br /> Copyright (c) 1982, 2007, Oracle. All Rights Reserved. <br /><br /> Connected to: <br /> Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production <br /> With the Partitioning, Real Application Clusters, OLAP, Data Mining <br /> and Real Application Testing options <br /><br /> SQL&gt; alter system reset sql_trace scope = spfile sid =&#39;*&#39;; <br /><br /> System altered. <br /><br /> SQL&gt; exit <br /> Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production <br /> With the Partitioning, Real Application Clusters, OLAP, Data Mining <br /> and Real Application Testing options <br /><br /> Check *. sql_trace = FALSE has been changed: <br /> [Oracle @ db1 racdb] $ cat spfileracdb.ora <br /> 9? # + Racdb2.__db_cache_size = 1577058304 <br /> racdb1.__db_cache_size = 1543503872 <br /> racdb2.__java_pool_size = 16777216 <br /> racdb1.__java_pool_size = 16777216 <br /> racdb2.__large_pool_size = 16777216 <br /> racdb1.__large_pool_size = 16777216 <br /> racdb2.__shared_pool_size = 1509949440 <br /> racdb1.__shared_pool_size = 1543503872 <br /> racdb2.__streams_pool_size = 16777216 <br /> racdb1.__streams_pool_size = 16777216 <br /> *. Archive_lag_target = 1800 <br /> *. Audit_file_dest = &#39;/ opt / oracle / app / admin / racdb / adump&#39; <br /> *. Background_dump_dest = &#39;/ opt / oracle / app / admin / racdb / bdump&#39; <br /> *. Cluster_database_instances = 2 <br /> *. Cluster_database = true <br /> *. Compatible = &#39;10 .2.0.3.0 &#39; <br /> *. Control_files = &#39;/ oradata1/racdb/control01.ctl&#39;, &#39;/ oradata1/racdb/control02.ctl&#39;, &#39;/ oradata1/racdb/control03.ctl&#39; <br /> *. Core_dump_dest = &#39;/ opt / oracle / app / admin / racdb / cdump&#39; <br /> *. Db_block_size = 8192 <br /> *. Db_domain =&#39;&#39; <br /> *. Db_file_multiblock_read_count = 16 <br /> *. Db_name = &#39;racdb&#39; <br /> *. Dispatchers = &#39;(PROTOCOL = TCP) (SERVICE = racdbXDB)&#39; <br /> racdb2.instance_number = 2 <br /> racdb1.instance_number = 1 <br /> *. Job_queue_processes = 10 <br /> *. Log_archive_dest_1 = &#39;LOCATION = / arch/racdb1&#39; <br /> racdb2.log_archive_dest_1 = &#39;LOCATION = / arch/racdb2&#39; <br /> racdb1.log_archive_dest_1 = &#39;LOCATION = / arch/racdb1&#39; <br /> racdb1.log_archive_dest_2 = &#39;service = standby lgwr async noaffirm&#39; <br /> racdb2.log_archive_dest_2 = &#39;service = standby lgwr async noaffirm&#39; <br /> *. Log_archive_dest_state_2 = &#39;enable&#39; <br /> *. Log_archive_format = &#39;% t_% s_% r.dbf&#39; <br /> *. Nls_territory = &#39;CHINA&#39; <br /> *. Open_cursors = 300 <br /> *. Pga_aggregate_target = 1073741824 <br /> *. Processes = 1000 <br /> *. Remote_listener = &#39;LISTENERS_RACDB&#39; <br /> *. Remote_login_passwordfile = &#39;exclusive&#39; <br /> *. Resource_limit = TRUE <br /> *. Sessions = 1105 <br /> *. Sga_target = 3145728000 <br /> racdb1.standby_file_management = &#39;AUTO&#39; <br /> racdb2.standby_file_management = &#39;AUTO&#39; <br /> racdb2.thread = 2 <br /> racdb1.thread = 1 <br /> *. Timed_statistics = TRUE <br /> *. Undo_management = &#39;AUTO&#39; <br /> *. Undo_tablespace = &#39;UNDOTBS1&#39; <br /> racdb1.undo_tablespace = &#39;UNDOTBS1&#39; <br /> racdb2.undo_tablespace = &#39;UNDOTBS2&#39; <br /> *. User_dump_dest = &#39;/ oradata1 / / trace&#39; <br /> *. Utl_file_dir = &#39;/ oradata1/logmnr&#39; <br /><br /> Summary: For the rac, when adjusting system parameters to make use of scope = spfile, then restart each node. This approach than the first modified pfile, pfile created through the spfile, To start the database more than a simple, but difficult problem. This approach is common to use each node of a spfile, management is convenient, but some might not be very flexible when, if the shared spfile corruption, you will receive the impact of rac nodes, 有利必有弊 to flexibility.				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/listener-and-ezconnect/" title="LISTENER and EZCONNECT">LISTENER and EZCONNECT</a> 2009-04-01 21:42:20</li>
					<li><a href="http://www.kods.net/oracle-deadlock-related/" title="Oracle deadlock related">Oracle deadlock related</a> 2009-03-30 16:46:54</li>
					<li><a href="http://www.kods.net/turning-optimization-oracle-article/" title="Turning optimization oracle article">Turning optimization oracle article</a> 2009-03-26 21:39:35</li>
					<li><a href="http://www.kods.net/an-example-of-the-use-of-tkprof/" title="An example of the use of TKPROF">An example of the use of TKPROF</a> 2009-02-26 01:38:19</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/modify-the-parameters-of-a-process-share-pool/</wfw:commentRss>
	</item>
		<item>
		<title>oracle em web button garbled</title>
		<link>http://www.kods.net/oracle-em-web-button-garbled/</link>
		<comments>http://www.kods.net/oracle-em-web-button-garbled/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 19:41:02+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle]]></category>
<category><![CDATA[oracle 10g]]></category>
<category><![CDATA[oracle home]]></category>
<category><![CDATA[lib]]></category>
<category><![CDATA[enterprise manager]]></category>
<category><![CDATA[lt]]></category>
<category><![CDATA[oracle cd]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[web based management]]></category>
<category><![CDATA[font properties]]></category>
<category><![CDATA[default font]]></category>
<category><![CDATA[chinese characters]]></category>
<category><![CDATA[management tool]]></category>
<category><![CDATA[garbage]]></category>
<category><![CDATA[linux machine]]></category>
<category><![CDATA[chinese programming]]></category>
<category><![CDATA[failure problems]]></category>
<category><![CDATA[logo font]]></category>
<category><![CDATA[web button]]></category>
<category><![CDATA[web content]]></category>
		<guid isPermaLink="true">http://www.kods.net/oracle-em-web-button-garbled/</guid>
		<description><![CDATA[Oracle 10g provides a Web-based management tool for EM (Enterprise Manager). Today, some linux machine to use a small error, the buttons are all garbled, the system Linux AS4. After some search, online information on proposed changes in many reproduc ...]]></description>
		<content:encoded><![CDATA[Oracle 10g provides a Web-based management tool for EM (Enterprise Manager). Today, some linux machine to use a small error, the buttons are all garbled, the system Linux AS4. After some search, online information on proposed changes in many reproduced in the language ie English, so that time can be, but all content will become English. Chinese programming to solve the button below. <br /><br /> <strong>1, failure problems</strong> when &lt;br /&gt; open http://ip:1158/em, web content in Chinese, but the buttons are all box-type garbage. <br /><br /> <strong>Second, problem-solving</strong> <br /> <strong>1, changing the $ ORACLE_HOME / jdk jre directory under the default font</strong> <br /> $ Su - oracle <br /> $ Cd $ ORACLE_HOME / jdk / jre / lib / <br /> $ Ls font * <br /><br /> Which, font.properties is the default font used. You can also see some font. Chinese fonts (specifically, CN, or choose View GB) and other fonts. <br /> Backup Default Font <br /><br /> $ Cp font.properties font.properties.bak <br /> Will replace the Chinese characters of your choice as the default font <br /><br /> $ Cp font.properties. 【Logo】 font.properties Chinese fonts <br /><br /> <strong>2, changing the $ ORACLE_HOME / jre</strong> &lt;br /&gt; <strong>under the default font</strong> used to operate the same way as above. <br /><br /> $ Cd $ ORACLE_HOME/jre/1.4.2/lib / <br /> $ Ls font * <br /><br /> $ Cp font.properties font.properties.bak <br /> Will replace the Chinese characters of your choice as the default font <br /><br /> $ Cp font.properties. 【Logo】 font.properties Chinese fonts <br /><br /> <strong>3, under the gif files to delete Cache</strong> <br /> em which will use these pictures:				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/sga-extended-the-principle-of-32bit-oracle/" title="SGA extended the principle of 32bit oracle">SGA extended the principle of 32bit oracle</a> 2009-03-31 09:48:01</li>
					<li><a href="http://www.kods.net/diagnosis-and-principles-of-order/" title="Diagnosis and principles of order">Diagnosis and principles of order</a> 2009-02-25 20:27:28</li>
					<li><a href="http://www.kods.net/oracle-10g-dataguard-configuration-step-by-step/" title="ORACLE 10G dataguard configuration Step by Step">ORACLE 10G dataguard configuration Step by Step</a> 2009-02-16 01:13:55</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/oracle-em-web-button-garbled/</wfw:commentRss>
	</item>
		<item>
		<title>Problem Summary: Linux install error under the common summary oracle</title>
		<link>http://www.kods.net/problem-summary-linux-install-error-under-the-common-summary-oracle/</link>
		<comments>http://www.kods.net/problem-summary-linux-install-error-under-the-common-summary-oracle/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 23:26:33+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[lib]]></category>
<category><![CDATA[tmp]]></category>
<category><![CDATA[oracle error]]></category>
<category><![CDATA[oracl]]></category>
<category><![CDATA[previous version]]></category>
<category><![CDATA[java lang]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[as5]]></category>
<category><![CDATA[system error]]></category>
<category><![CDATA[rpm]]></category>
<category><![CDATA[unsatisfiedlinkerror]]></category>
<category><![CDATA[ln s]]></category>
<category><![CDATA[error while loading shared libraries]]></category>
<category><![CDATA[shared object]]></category>
<category><![CDATA[x11]]></category>
<category><![CDATA[dynamic link library]]></category>
<category><![CDATA[exception java]]></category>
<category><![CDATA[case case]]></category>
<category><![CDATA[system cd]]></category>
<category><![CDATA[system tray]]></category>
		<guid isPermaLink="true">http://www.kods.net/problem-summary-linux-install-error-under-the-common-summary-oracle/</guid>
		<description><![CDATA[Error 1: / Tmp/OraInstall2007-12-30_02-16-11PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred .. The reasons are: lack of support printed graphics dynamic link library libXp.so.6 This erro ...]]></description>
		<content:encoded><![CDATA[<strong>Error 1:</strong> <br /><br /> / Tmp/OraInstall2007-12-30_02-16-11PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred .. <br /><br /> The reasons are: lack of support printed graphics dynamic link library libXp.so.6 <br /><br /> This error is due to the lack of system installation package, the previous version in RHEL5, you can install the xorg-x11-deprecated-libs package can be, this installation package can be the third CD in the system tray to find (for redhat as4.2 ago, redhat as4. 4 is the fourth CD-ROM) <br /><br /> <strong>IXDBA.NET technical community</strong> <br /><br /> I downloaded the file as follows: <br /><br /> xorg-x11-deprecated-libs-6.8.2-31.i386.rpm <br /><br /> <strong>Error 2:</strong> <br /><br /> Exception: java.lang.UnsatisfiedLinkError: / usr/java/j2sdk1.4.2_06/jre/lib/i386/libawt.so: libXt.so.6: cannot open shared object file: No such file or directory <br /> This error is also due to the lack of the system caused by the installation package, just install the XFree86-libs package can be, this installation package can be found in the system CD. <br /><br /> <strong>If the above two errors in the redhat as5 version, resolved as follows:</strong> <br /><br /> <strong>In RHEL5 the above package is libXp replaced, so the rpm-ivh libXp-1.0.0-8.i386.rpm after the package marked with the problem can be solved.</strong> <br /><br /> <strong>Error 3:</strong> <br /><br /> error while loading shared libraries: libstdc + +-libc6.1-1.so.2 <br /><br /> Only do the following ln-s libstdc + +-libc6.2-2.so.3 libstdc + +-libc6.1-1.so.2 <br /><br /> Reference Case <br /><br /> <strong>Case 1:</strong> <br /><br /> Tested in the RHEL5 install oracle10g, that before the turn of the 11g, this would be more successful, the result is still two problems. <br /><br /> First of all, in the implementation of the runInstaller, the system error: <br /><br /> You do not have sufficient permissions to access the inventory &#39;/ oracle11g/oraInventory&#39;. Installation cannot continue. Make sure that you have read / write permissions to the inventory directory and restart the installer.: Permission denied <br /><br /> Is used here to create a new way for users 10g 10g, 11g coexist, in fact, when you start the installer, oracle will look for / etc / <strong>oraInst.loc and</strong> oratab these two files (hp is <strong>/ var / opt / oracle )</strong> <br /><br /> Which is defined in oraInst.loc inventory_loc location and inst_group, as had before installed a 11g, which is the definition of user settings for 11g, so the only error. Solution is the implementation of <strong>runInstaller-invPtrLoc / oracle10g/oraInst.loc</strong> command can be passed around, oracle will create a new loc file. <br /><br /> After the previous step successfully, followed by reporting the following error: <br /><br /> Exception java.lang.UnsatisfiedLinkError: / tmp/OraInstall2007-08-30_02-16-11PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred .. <br /> java.lang.UnsatisfiedLinkError: / tmp/OraInstall2007-08-30_02-16-11PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory <br /><br /> In RHEL5 before this error is because of lack of XFree86-libs or xorg-x11-deprecated-libs package one of the two (different versions of different packages), and in RHEL5 in front of the package is libXp replaced, so the rpm-ivh libXp -1.0.0-8.i386.rpm after the package marked solve the problem. After all the best. <br /><br /> <strong>Case 2:</strong> <br /><br /> Reference http://moto.debian.org.tw/viewtopic.php?t=8055&amp;sid=eb2524337903c5af7ce1e839e0a35b68 <br /> Preparation for the installation of pre-installed at the beginning of the following errors: <br /><br /> For error while loading shared libraries: libstdc + +-libc6.1-1.so.2 <br /> My solution is to <br /> ln-s libstdc + +-libc6.2-2.so.3 libstdc + +-libc6.1-1.so.2 <br /> For <br /> Exception: java.lang.UnsatisfiedLinkError: / usr/java/j2sdk1.4.2_06/jre/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory <br /> Solution is <br /> apt-get install libXp.so.6 <br /> apt-get install libXt.so.6 <br /> apt-get install libxtst6 <br /><br /> <strong>Case 3:</strong> <br /><br /> In RH Linux7.3 JasperReport as the reporting engine to use when encountered the same problem: <br /> Exception: java.lang.UnsatisfiedLinkError: / usr/java/j2sdk1.4.2_06/jre/lib/i386/libawt.so: libXt.so.6: cannot open shared object file: No such file or directory <br /><br /> In reply to the prompt you before, after one morning google, finally able to solve this problem because: a lack of support for printing graphics dynamic link library libXp.so.6 (perhaps related to other libraries) <br /> Solution: Download and install the XFree86-libs-4.2.0-8.i386.rpm, / usr/X11R6/lib need libXp.so.6.2 will appear under the <br /><br /> Attached to XFree86-libs-4.2.0-8.i386.rpm&#39;s a download address: <br /> ftp://ftp.nluug.nl/vol/1/schoollan/os/linux/RPMS/XFree86-libs-4.2.0-8.i386.rpm				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/alter-system-set-events-related-knowledge/" title="alter system set events related knowledge">alter system set events related knowledge</a> 2009-04-17 17:31:20</li>
					<li><a href="http://www.kods.net/with-asp-to-achieve-operation-of-the-oracle-database/" title="With ASP to achieve operation of the ORACLE database">With ASP to achieve operation of the ORACLE database</a> 2009-04-13 16:52:55</li>
					<li><a href="http://www.kods.net/oracle-11g/" title="Oracle 11g">Oracle 11g</a> 2009-04-10 05:16:41</li>
					<li><a href="http://www.kods.net/the-third-part-20-advanced-configuration-of-the-single-source-multi-directional-replication-environment-1/" title="The third part (20) Advanced Configuration of the single-source multi-directional replication environment (1)">The third part (20) Advanced Configuration of the single-source multi-directional replication environment (1)</a> 2009-04-09 16:38:20</li>
					<li><a href="http://www.kods.net/oracle10g-full-version-centos5-installed-the-installation-has-passed/" title="ORACLE10G full version centos5 installed (the installation has passed)">ORACLE10G full version centos5 installed (the installation has passed)</a> 2009-03-31 09:49:10</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/problem-summary-linux-install-error-under-the-common-summary-oracle/</wfw:commentRss>
	</item>
		<item>
		<title>Problem Summary: Linux installation error under the common conclusion oracle</title>
		<link>http://www.kods.net/problem-summary-linux-installation-error-under-the-common-conclusion-oracle/</link>
		<comments>http://www.kods.net/problem-summary-linux-installation-error-under-the-common-conclusion-oracle/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 09:57:27+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle error]]></category>
<category><![CDATA[previous version]]></category>
<category><![CDATA[java lang]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[as5]]></category>
<category><![CDATA[system error]]></category>
<category><![CDATA[rpm]]></category>
<category><![CDATA[unsatisfiedlinkerror]]></category>
<category><![CDATA[insta]]></category>
<category><![CDATA[ln s]]></category>
<category><![CDATA[error while loading shared libraries]]></category>
<category><![CDATA[shared object]]></category>
<category><![CDATA[installation error]]></category>
<category><![CDATA[x11]]></category>
<category><![CDATA[dynamic link library]]></category>
<category><![CDATA[exception java]]></category>
<category><![CDATA[case case]]></category>
<category><![CDATA[system cd]]></category>
<category><![CDATA[system tray]]></category>
<category><![CDATA[technology community]]></category>
		<guid isPermaLink="true">http://www.kods.net/problem-summary-linux-installation-error-under-the-common-conclusion-oracle/</guid>
		<description><![CDATA[Error 1: / Tmp/OraInstall2007-12-30_02-16-11PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred .. The reasons are: lack of support printed graphics dynamic link library libXp.so.6 This erro ...]]></description>
		<content:encoded><![CDATA[<strong>Error 1:</strong> <br /><br /> / Tmp/OraInstall2007-12-30_02-16-11PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred .. <br /><br /> The reasons are: lack of support printed graphics dynamic link library libXp.so.6 <br /><br /> This error is due to the lack of system installation package, the previous version in RHEL5, you can install the xorg-x11-deprecated-libs package can be, this installation package can be the third CD in the system tray to find (for redhat as4.2 ago, redhat as4. 4 is the fourth CD-ROM) <br /><br /> <strong>IXDBA.NET technology community</strong> <br /><br /> I download the following documents: <br /><br /> xorg-x11-deprecated-libs-6.8.2-31.i386.rpm <br /><br /> <strong>Error 2:</strong> <br /><br /> Exception: java.lang.UnsatisfiedLinkError: / usr/java/j2sdk1.4.2_06/jre/lib/i386/libawt.so: libXt.so.6: cannot open shared object file: No such file or directory <br /> This error is also due to the lack of the system caused by the installation package, just install the XFree86-libs package can be, this installation package can be found on the system CD. <br /><br /> <strong>If the above two errors in the redhat as5 version, resolved as follows:</strong> <br /><br /> <strong>In RHEL5 the above package is libXp replaced, so the rpm-ivh libXp-1.0.0-8.i386.rpm after the package marked with the problem can be solved.</strong> <br /><br /> <strong>Error 3:</strong> <br /><br /> error while loading shared libraries: libstdc + +-libc6.1-1.so.2 <br /><br /> Only do the following ln-s libstdc + +-libc6.2-2.so.3 libstdc + +-libc6.1-1.so.2 <br /><br /> Reference Case <br /><br /> <strong>Case 1:</strong> <br /><br /> Tested in the RHEL5 install oracle10g, that before the turn of the 11g, this would be more successful, the result is still two problems. <br /><br /> First of all, in the implementation of the runInstaller, the system error: <br /><br /> You do not have sufficient permissions to access the inventory &#39;/ oracle11g/oraInventory&#39;. Installation cannot continue. Make sure that you have read / write permissions to the inventory directory and restart the installer.: Permission denied <br /><br /> Is used here to create a new way for users 10g 10g, 11g coexist, in fact, when you start the installer, oracle will look for / etc / <strong>oraInst.loc and</strong> oratab these two files (hp is <strong>/ var / opt / oracle )</strong> <br /><br /> Which is defined in oraInst.loc inventory_loc location and inst_group, as had before the installation of a 11g, which is the definition of user settings for 11g, so the only error. Solution is the implementation of <strong>runInstaller-invPtrLoc / oracle10g/oraInst.loc</strong> command can be passed around, oracle will create a new loc file. <br /><br /> After the previous step successfully, following reports the following fault: <br /><br /> Exception java.lang.UnsatisfiedLinkError: / tmp/OraInstall2007-08-30_02-16-11PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred .. <br /> java.lang.UnsatisfiedLinkError: / tmp/OraInstall2007-08-30_02-16-11PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory <br /><br /> In RHEL5 before this error is because of lack of XFree86-libs or xorg-x11-deprecated-libs one of the two packages (in different versions of different packages), and in front of the package in RHEL5 is libXp replaced, so the rpm-ivh libXp -1.0.0-8.i386.rpm after the package marked solve the problem. After all the best. <br /><br /> <strong>Case 2:</strong> <br /><br /> Reference http://moto.debian.org.tw/viewtopic.php?t=8055&amp;sid=eb2524337903c5af7ce1e839e0a35b68 <br /> For pre-installation ready to begin the installation when the following error: <br /><br /> For error while loading shared libraries: libstdc + +-libc6.1-1.so.2 <br /> My solution is to <br /> ln-s libstdc + +-libc6.2-2.so.3 libstdc + +-libc6.1-1.so.2 <br /> For <br /> Exception: java.lang.UnsatisfiedLinkError: / usr/java/j2sdk1.4.2_06/jre/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory <br /> Solution is <br /> apt-get install libXp.so.6 <br /> apt-get install libXt.so.6 <br /> apt-get install libxtst6 <br /><br /> <strong>Case 3:</strong> <br /><br /> In RH Linux7.3 JasperReport as the reporting engine to use when encountered the same problem: <br /> Exception: java.lang.UnsatisfiedLinkError: / usr/java/j2sdk1.4.2_06/jre/lib/i386/libawt.so: libXt.so.6: cannot open shared object file: No such file or directory <br /><br /> In reply to the prompt you before, after one morning google, finally able to solve this problem because: a lack of support for printing graphics dynamic link library libXp.so.6 (perhaps related to other libraries) <br /> Solution: Download and install the XFree86-libs-4.2.0-8.i386.rpm, / usr/X11R6/lib need libXp.so.6.2 will appear under the <br /><br /> Attached XFree86-libs-4.2.0-8.i386.rpm&#39;s a download address: <br /> ftp://ftp.nluug.nl/vol/1/schoollan/os/linux/RPMS/XFree86-libs-4.2.0-8.i386.rpm				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/redhat-as4-under-the-startup-script-since-oracle10g/" title="Redhat as4 under the startup script since oracle10g">Redhat as4 under the startup script since oracle10g</a> 2009-06-18 04:02:17</li>
					<li><a href="http://www.kods.net/apex3-2-steps-to-install-oracle10/" title="apex3.2 steps to install oracle10">apex3.2 steps to install oracle10</a> 2009-04-19 10:33:11</li>
					<li><a href="http://www.kods.net/oracle-installation-difficulties/" title="Oracle installation difficulties">Oracle installation difficulties</a> 2009-04-19 04:08:56</li>
					<li><a href="http://www.kods.net/alter-system-set-events-related-knowledge/" title="alter system set events related knowledge">alter system set events related knowledge</a> 2009-04-17 17:31:20</li>
					<li><a href="http://www.kods.net/oracle-11g/" title="Oracle 11g">Oracle 11g</a> 2009-04-10 05:16:41</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/problem-summary-linux-installation-error-under-the-common-conclusion-oracle/</wfw:commentRss>
	</item>
		<item>
		<title>Rman problem novice small note 3: Create auxiliary instance encountered ORA-01031</title>
		<link>http://www.kods.net/rman-problem-novice-small-note-3-create-auxiliary-instance-encountered-ora-01031/</link>
		<comments>http://www.kods.net/rman-problem-novice-small-note-3-create-auxiliary-instance-encountered-ora-01031/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 09:11:35+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[database data]]></category>
<category><![CDATA[client database]]></category>
<category><![CDATA[main library]]></category>
<category><![CDATA[dg]]></category>
<category><![CDATA[password file]]></category>
<category><![CDATA[target database]]></category>
<category><![CDATA[database connection]]></category>
<category><![CDATA[fri]]></category>
<category><![CDATA[connection string]]></category>
<category><![CDATA[oracle db]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[google]]></category>
<category><![CDATA[system environment]]></category>
<category><![CDATA[search solution]]></category>
<category><![CDATA[01031 insufficient privileges]]></category>
<category><![CDATA[aaa]]></category>
<category><![CDATA[library copy]]></category>
<category><![CDATA[database address]]></category>
<category><![CDATA[preparatory phase]]></category>
<category><![CDATA[wrong way]]></category>
		<guid isPermaLink="true">http://www.kods.net/rman-problem-novice-small-note-3-create-auxiliary-instance-encountered-ora-01031/</guid>
		<description><![CDATA[Reference [think twice Notes] step by step and learn to do dg DataGuard document the beginning of the preparatory phase, the library copy of the database call the shots, make a copy of the first phase of the database, create a secondary instance, the ...]]></description>
		<content:encoded><![CDATA[Reference [think twice Notes] step by step and learn to do dg DataGuard document the beginning of the preparatory phase, the library copy of the database call the shots, make a copy of the first phase of the database, create a secondary instance, the basic process is: <br /><br /> 1, create a password file <br /><br /> 2, Create initialization parameter file <br /><br /> 3, connection and start the auxiliary instance <br /><br /> 4, using rman parameters to connect to auxiliary instance of the main library and auxiliary <br /><br /> My system environment: redhat-as4.7 + oracle10.2.0.4, <br /><br /> The main database address: 192.168.1.220 sid: lizidb dbname: lizidb <br /><br /> Secondary database Address: 192.168.1.221 sid: standbydb dbname: sbydb <br /><br /> Client database connection string: Main: @ lizidb_192.168.1.220 <br /><br /> Fu: @ standby_192.168.1.221 <br /><br /> The first step to create the password file, refer to reconsider the document, create the password file to the database data file directory below and to PWDsid.ora name, login using rman auxiliary instance, error: <br /><br /> [Oracle @ db-standby standbydb] $ orapwd file = / u00/oracle/standbydb/pwdstandby.ora password = aaa entries = 30 <br /><br /> [Oracle @ db-standby pfile] $ rman target sys / aaa @ standby_192.168.1.221 <br /><br /> Recovery Manager: Release 10.2.0.4.0 - Production on Fri Apr 16 16:11:13 2010 <br /><br /> Copyright (c) 1982, 2007, Oracle. All rights reserved. <br /><br /> RMAN-00571: ============================================== ============= <br /> RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== <br /> RMAN-00571: ============================================== ============= <br /> RMAN-00554: initialization of internal recovery manager package failed <br /> RMAN-04005: error from target database: <br /> ORA-01031: insufficient privileges <br /><br /> google search solution ora-01031 wrong way, to check all sorts of places, such as sqlnet.ora, listener.ora, various documents authority, an instance of memory for so much trouble is also not effective, several times thinking, feeling, or orientation in the password file above. Because the error literally means to have no permission to visit the auxiliary instance, why not power? Nothing more than users of other users do not have operating authority, but now that the supporting examples for creating a sys&#39;s password file, but I still reported this error, it shows that did not find the sys user, also is not used in the password file landing Shi Hou by search, found the following related articles: <br /><br /> Point on the learning oracle password file <br /><br /> Command to create the password file <br /><br /> orapwd file = &lt;&gt; password = &lt;&gt; entries = maximum number of <br /><br /> The file naming convention here in unix / linux under orapw &lt;ORACLE_SID&gt;, under the windows pwd &lt;SID&gt;. Ora <br /><br /> See the following description of specific information (this is a friends pub summary) <br /><br /> <em><strong>1. Unix environment:</strong></em> <br /><br /> <em><strong>Investigation of the Administrator&#39;s Reference 10g Release 2 (10.2) for UNIX-Based Operating Systems.</strong></em> <br /><br /> <em><strong>1. Log in as the Oracle software owner.</strong></em> <br /><br /> <em><strong>2. Use the orapwd utility to create the password file as follows: $ $ ORACLE_HOME / bin / orapwd file = filename password = password entries = max_users ... ...</strong></em> <br /><br /> <em><strong>filename The name of the file in which password information is written</strong></em> <br /><br /> <em><strong>The name of the file must be orapwsid, and you must supply the full path name. Its contents are encrypted. Typically, the password file is created in the $ ORACLE_HOME / dbs directory.</strong></em> <br /><br /> <em><strong>Please note that bold, so unix environment, password file must use orapw &lt;SID&gt;, no exceptions.</strong></em> <br /><br /> 2. Windows environment: <br /><br /> Investigation of the Platform. Guide 10g Release 2 (10.2) for Microsoft Windows (32-Bit) (No check 64-bit) <br /><br /> To create and populate a password file: <br /><br /> (1). Create a password file with the Password Utility: <br /><br /> C:&gt; orapwd FILE = PWDsid.ora PASSWORD = password ENTRIES = max_users <br /><br /> where <br /><br /> | FILE specifies the password filename. <br /><br /> | SID identifies the database instance. <br /><br /> | PASSWORD sets the password for account SYS. <br /><br /> | ENTRIES sets maximum number of entries in password file. This corresponds to maximum number of distinct users allowed to connect to the database simultaneously with either the SYSDBA or the SYSOPER DBA privilege. <br /><br /> (2). Set initialization parameter file parameter REMOTE_LOGIN_PASSWORDFILE to exclusive, shared, or none. <br /><br /> In search of the password file, Oracle Database looks in the registry for the value of parameter <br /><br /> ORA_SID_PWFILE. If no value is specified, then it looks in the registry for the <br /><br /> value of parameter ORA_PWFILE, which points to a file containing usernames, <br /><br /> passwords, and privileges. If that is not set, then it uses the default: <br /><br /> ORACLE_BASEORACLE_HOMEDATABASEPWDsid.ORA. <br /><br /> The default value is shared. <br /><br /> Please note that bold, windows environment, a large part is based on the registry variable ora_sid_pwfile or ora_pwfile settings, the default value, as paulyibinyi brother pointed out, is the pwd &lt;SID&gt;. Ora (unix is not it. Ora suffix). <br /><br /> Second, under the windows to connect / as sysdba and other users can login without a password problem <br /><br /> 1. This is because oracle uses OS authentication methods, specific content can be viewed as the same sqlnet.ora specific <br /><br /> SQLNET.AUTHENTICATION_SERVICES = (NTS) <br /><br /> To change SQLNET.AUTHENTICATION_SERVICES = (NONE) <br /><br /> This is the way the oracle certification <br /><br /> 2. Because authentication with the OS, can the operating system -&gt; Control Panel -&gt; Computer Management -&gt; Users to the current user of the property group ORA_DBA removed, then if no user name and password are not. <br /><br /> As follows: <br /><br /> SQL&gt; connect / as sysdba ERROR: ORA-01031: insufficient privileges <br /><br /> SQL&gt; connect sys / oracle as sysdba <br /><br /> Connected. <br /><br /> Third, using alter user identified by ... ... to modify the password alter user sys identified by abc look, even a database password and the password with the password file into abc a; <br /><br /> Fourth, if the password file is missing how to do? <br /><br /> Using orapwd re-create an on it. <br /> The group posted music from TOKYO Community - http: / / q.yesky.com/group/review-17556888.html <br /><br /> Note that italicized part, the original is in the linux system, when I create a password file path and name are not correct, then rebuild the password file in accordance with their requirements, the successful connection: <br /><br /> [Oracle @ db-standby pfile] $ rman target sys / aaa @ standby_192.168.1.221 <br /><br /> Recovery Manager: Release 10.2.0.4.0 - Production on Fri Apr 16 17:02:53 2010 <br /><br /> Copyright (c) 1982, 2007, Oracle. All rights reserved. <br /><br /> connected to target database: standbydb (not mounted) <br /><br /> RMAN&gt; exit				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/oracle9i-database-manually-create-specific-steps/" title="Oracle9i database manually create specific steps">Oracle9i database manually create specific steps</a> 2009-04-02 13:49:25</li>
					<li><a href="http://www.kods.net/rman-created-physical-standby/" title="RMAN created physical standby">RMAN created physical standby</a> 2009-03-30 22:49:29</li>
					<li><a href="http://www.kods.net/use-sqlldr-1-introduction/" title="use sqlldr 1 Introduction">use sqlldr 1 Introduction</a> 2009-03-27 19:39:01</li>
					<li><a href="http://www.kods.net/troubleshooting-the-physical-set-up-the-backup-database/" title="Troubleshooting: the physical set up the backup database">Troubleshooting: the physical set up the backup database</a> 2009-03-13 00:53:17</li>
					<li><a href="http://www.kods.net/data-gurad-use-dbms-file-transfer-and-cloning-configuration-database/" title="DATA GURAD use DBMS_FILE_TRANSFER and cloning configuration database">DATA GURAD use DBMS_FILE_TRANSFER and cloning configuration database</a> 2009-02-23 19:07:40</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/rman-problem-novice-small-note-3-create-auxiliary-instance-encountered-ora-01031/</wfw:commentRss>
	</item>
		<item>
		<title>dbca building a database script analysis</title>
		<link>http://www.kods.net/dbca-building-a-database-script-analysis/</link>
		<comments>http://www.kods.net/dbca-building-a-database-script-analysis/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 06:56:47+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[quot]]></category>
<category><![CDATA[oracle]]></category>
<category><![CDATA[sid]]></category>
<category><![CDATA[parameters]]></category>
<category><![CDATA[oracle product]]></category>
<category><![CDATA[orcl]]></category>
<category><![CDATA[dictionary]]></category>
<category><![CDATA[password file]]></category>
<category><![CDATA[environment variable]]></category>
<category><![CDATA[spool]]></category>
<category><![CDATA[adump]]></category>
<category><![CDATA[pfile]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[database script]]></category>
<category><![CDATA[executive host]]></category>
<category><![CDATA[analysis platform]]></category>
<category><![CDATA[script analysis]]></category>
<category><![CDATA[library construction]]></category>
<category><![CDATA[script library]]></category>
<category><![CDATA[seeds]]></category>
		<guid isPermaLink="true">http://www.kods.net/dbca-building-a-database-script-analysis/</guid>
		<description><![CDATA[Platform: Redhat AS4 UPDATE 7, Oracle 10gR2 ORACLE_BASE: / u01/app/oracle, SID: orcl1 dbca script library construction is to use the template to create the database, the advantage of using a template to create the database will usually speed quickly, reas]]></description>
		<content:encoded><![CDATA[Platform: Redhat AS4 UPDATE 7, Oracle 10gR2 <br /><br /> ORACLE_BASE: / u01/app/oracle, SID: orcl1 <br /><br /> dbca script library construction is to use the template to create the database, the advantage of using a template to create the database will usually speed quickly, reason is that the data file to restore the database from the seeds out without the need to create documents and information such as a dictionary object. <br /><br /> First, create the directory: <br /><br /><blockquote> mkdir-p / u01/app/oracle/admin/orcl1/adump <br /><br /> mkdir-p / u01/app/oracle/admin/orcl1/bdump <br /><br /> mkdir-p / u01/app/oracle/admin/orcl1/cdump <br /><br /> mkdir-p / u01/app/oracle/admin/orcl1/dpdump <br /><br /> mkdir-p / u01/app/oracle/admin/orcl1/pfile <br /><br /> mkdir-p / u01/app/oracle/admin/orcl1/udump <br /><br /> mkdir-p / u01/app/oracle/flash_recovery_area <br /><br /> mkdir-p / u01/app/oracle/oradata/orcl1 <br /><br /> mkdir-p / u01/app/oracle/product/10.2.0/db_1/cfgtoollogs/dbca/orcl1 <br /><br /> mkdir-p / u01/app/oracle/product/10.2.0/db_1/dbs </blockquote><br /> Second, set the environment variable <br /><br /><blockquote> ORACLE_SID = orcl1; export ORACLE_SID </blockquote><br /> Third, in the / etc / oratab instance start adding items <br /><br /><blockquote> orcl1: / u01/app/oracle/product/10.2.0/db_1: Y </blockquote><br /> Fourth, create a password file (password file): <br /><br /> Log in nolog, the Executive <br /><br /><blockquote> host / u01/app/oracle/product/10.2.0/db_1/bin/orapwd file = / u01/app/oracle/product/10.2.0/db_1/dbs/orapworcl1 password = &amp; sysPassword force = y </blockquote><br /> Password <br /><br /> 5, CloneRmanRestore.sql (using the specified parameter file to open the database nomount, call rmanRestoreDatafiles.sql) <br /><br /><blockquote> connect sys / orcl as SYSDBA <br /><br /> set echo on <br /><br /> spool / u01/app/oracle/admin/orcl1/scripts/CloneRmanRestore.log <br /><br /> startup nomount pfile = &quot;/ u01/app/oracle/admin/orcl1/scripts/init.ora&quot;; / / open the database using the specified parameters <br /><br /> @ <strong>/</strong> U01/app/oracle/admin/orcl1/scripts / rmanRestoreDatafiles. Sql; </blockquote><br /><br /> 6, rmanRestoreDatafiles.sql (removed from the seed file, data file) <br /><br /><blockquote> set echo off; <br /><br /> set serveroutput on; <br /><br /> select TO_CHAR (systimestamp, &#39;YYYYMMDD HH: MI: SS&#39;) from dual; / / script starts running time <br /><br /> variable devicename varchar2 (255); <br /><br /> declare <br /><br /> omfname varchar2 (512): = NULL; <br /><br /> done boolean; <br /><br /> begin <br /><br /> dbms_output.put_line (&#39;&#39;); <br /><br /> dbms_output.put_line (&#39;Allocating device ....&#39;); <br /><br /> dbms_output.put_line (&#39;Specifying datafiles ...&#39;); <br /><br /> : Devicename: = dbms_backup_restore.deviceAllocate; <br /><br /> dbms_output.put_line (&#39;Specifing datafiles ...&#39;); <br /><br /> dbms_backup_restore.restoreSetDataFile; <br /><br /> dbms_backup_restore.restoreDataFileTo (1, &#39;/ u01/app/oracle/oradata/orcl1/system01.dbf&#39;, 0, &#39;SYSTEM&#39;); <br /><br /> dbms_backup_restore.restoreDataFileTo (2, &#39;/ u01/app/oracle/oradata/orcl1/undotbs01.dbf&#39;, 0, &#39;UNDOTBS1&#39;); <br /><br /> dbms_backup_restore.restoreDataFileTo (3, &#39;/ u01/app/oracle/oradata/orcl1/sysaux01.dbf&#39;, 0, &#39;SYSAUX&#39;); <br /><br /> dbms_backup_restore.restoreDataFileTo (4, &#39;/ u01/app/oracle/oradata/orcl1/users01.dbf&#39;, 0, &#39;USERS&#39;); <br /><br /> dbms_output.put_line (&#39;Restoring ...&#39;); <br /><br /> dbms_backup_restore.restoreBackupPiece (&#39;/ u01/app/oracle/product/10.2.0/db_1/assistants/dbca/templates/Seed_Database.dfb&#39;, done); / / seed file <br /><br /> if done then <br /><br /> dbms_output.put_line (&#39;Restore done.&#39;); <br /><br /> else <br /><br /> dbms_output.put_line (&#39;ORA-XXXX: Restore failed&#39;); <br /><br /> end if; <br /><br /> dbms_backup_restore.deviceDeallocate; <br /><br /> end; <br /><br /> / <br /><br /> select TO_CHAR (systimestamp, &#39;YYYYMMDD HH: MI: SS&#39;) from dual; / / end script run time </blockquote><br /> / / Dbms_backup_restore pack some background knowledge: <br /><br /> When the database backup through RMAN, RMAN will write multiple data files into one or more of the backup file (called backup set), RMAN backup related information or stored in the control file, or stored in the RMAN&#39;s private directory database (Catalog), if RMAN backup information is lost, it is usually concentrated in the file backup is no way to read out, and other tools can not identify RMAN backup set files; and dbms_backup_restore is to provide a response to this solution, dbms_backup_restore nomount state in the database call to read data directly from the backup set files very powerful. <br /><br /> DBMS_BACKUP_RESTORE package by the dbmsbkrs.sql and prvtbkrs.plb created two scripts to create database script executed catproc.sql call these two scripts to create the package, the script file can be $ ORACLE_HOME / rdbms / admin directory to find, script file to the package contents in detail. <br /><br /> 7, cloneDBCreation.sql (rebuild control file and modify the relevant parameters) <br /><br /><blockquote> connect sys / orcl as SYSDBA <br /><br /> set echo on <br /><br /> spool cloneDBCreation.log <br /><br /> Create controlfile reuse set database &quot;orcl1&quot; <br /><br /> MAXINSTANCES 8<br /><br /> MAXLOGHISTORY 1 <br /><br /> MAXLOGFILES 16 <br /><br /> MAXLOGMEMBERS 3 <br /><br /> MAXDATAFILES 100 <br /><br /> Datafile / / specify the data file <br /><br /> &#39;/ U01/app/oracle/oradata/orcl1/system01.dbf&#39;, <br /><br /> &#39;/ U01/app/oracle/oradata/orcl1/undotbs01.dbf&#39;, <br /><br /> &#39;/ U01/app/oracle/oradata/orcl1/sysaux01.dbf&#39;, <br /><br /> &#39;/ U01/app/oracle/oradata/orcl1/users01.dbf&#39; <br /><br /> / / Specify the log file group <br /><br /> LOGFILE GROUP 1 (&#39;/ u01/app/oracle/oradata/orcl1/redo01.log&#39;) SIZE 51200K, <br /><br /> GROUP 2 (&#39;/ u01/app/oracle/oradata/orcl1/redo02.log&#39;) SIZE 51200K, <br /><br /> GROUP 3 (&#39;/ u01/app/oracle/oradata/orcl1/redo03.log&#39;) SIZE 51200K RESETLOGS; <br /><br /> exec dbms_backup_restore.zerodbid (0); <br /><br /> / * ZeroDbid is a process package for the empty part of the data file header information, the new dbid in the control file created after could be calculated, for database cloning, it is necessary. <br /><br /> zeroDbid an input parameter, that is, file number: <br /><br /> PROCEDURE zeroDbid (fno IN binary_integer); <br /><br /> If fno == 0, the control file header contains all the data will be cleared, zeroDbid clear the data file header is mainly used for the 3 categories of information: Database id information, Checksum Checksum sign bit of information and information. * / <br /><br /> shutdown immediate; <br /><br /> startup nomount pfile = &quot;/ u01/app/oracle/admin/orcl1/scripts/initorcl1Temp.ora&quot;; <br /><br /> Create controlfile reuse set database &quot;orcl1&quot; <br /><br /> MAXINSTANCES 8 <br /><br /> MAXLOGHISTORY 1 <br /><br /> MAXLOGFILES 16 <br /><br /> MAXLOGMEMBERS 3 <br /><br /> MAXDATAFILES 100 <br /><br /> Datafile <br /><br /> &#39;/ U01/app/oracle/oradata/orcl1/system01.dbf&#39;, <br /><br /> &#39;/ U01/app/oracle/oradata/orcl1/undotbs01.dbf&#39;, <br /><br /> &#39;/ U01/app/oracle/oradata/orcl1/sysaux01.dbf&#39;, <br /><br /> &#39;/ U01/app/oracle/oradata/orcl1/users01.dbf&#39; <br /><br /> LOGFILE GROUP 1 (&#39;/ u01/app/oracle/oradata/orcl1/redo01.log&#39;) SIZE 51200K, <br /><br /> GROUP 2 (&#39;/ u01/app/oracle/oradata/orcl1/redo02.log&#39;) SIZE 51200K, <br /><br /> GROUP 3 (&#39;/ u01/app/oracle/oradata/orcl1/redo03.log&#39;) SIZE 51200K RESETLOGS; <br /><br /> alter system enable restricted session; <br /><br /> alter database &quot;orcl1&quot; open resetlogs; <br /><br /> alter database rename global_name to &quot;orcl1&quot;; <br /><br /> / / Add a temporary table space <br /><br /> ALTER TABLESPACE TEMP ADD TEMPFILE &#39;/ u01/app/oracle/oradata/orcl1/temp01.dbf&#39; SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED; <br /><br /> select tablespace_name from dba_tablespaces where tablespace_name = &#39;USERS&#39;; <br /><br /> select sid, program, serial #, username from v $ session; <br /><br /> / / Modify the character set <br /><br /> alter database character set INTERNAL_CONVERT WE8ISO8859P1; <br /><br /> alter database national character set INTERNAL_CONVERT AL16UTF16; <br /><br /> / / Modify the sys / system password <br /><br /> alter user sys identified by &quot;&amp; &amp; sysPassword&quot;; <br /><br /> alter user system identified by &quot;&amp; &amp; systemPassword&quot;; <br /><br /> alter system disable restricted session; </blockquote><br /> initorcl1Temp.ora <br /><br /> ################################################## ############################ <br /><br /> # Copyright (c) 1991, 2001, 2002 by Oracle Corporation <br /><br /> ################################################## ############################ <br /><br /> ########################################### <br /><br /> # Archive <br /><br /> ########################################### <br /><br /> log_archive_dest_1 = &quot;&quot; <br /><br /> ... ... ... ... ... <br /><br /> _no_recovery_through_resetlogs = true <br /><br /> / * _no_recovery_through_resetlogs FALSE no recovery through this resetlogs operation <br /><br /> This parameter can be used to limit recovery across resetlogs, the recovery of the database is, resetlogs usually means not fully recovered from the database resetlogs open, the control file in a lot of information to be rewritten before the Oracle 10g, if the database is open resetlogs , then it will no longer be able to document the current control point again before resetlogs recovery, and Oracle 10g changed the history. <br /><br /> In Oracle 10g, even by way of open resetlogs database, Oracle continues to support again from resetlogs time to recover before; in Clone database, Oracle sets this parameter to True, means that do not allow time again across resetlogs recovery. * / <br /><br /> 8, postScripts.sql (after the construction script) <br /><br /><blockquote> connect sys / orcl as SYSDBA <br /><br /> set echo on <br /><br /> spool / u01/app/oracle/admin/orcl1/scripts/postScripts.log <br /><br /> @ / U01/app/oracle/product/10.2.0/db_1/rdbms/admin/dbmssml.sql; <br /><br /> # CREATE OR REPLACE LIBRARY dbms_sumadv_lib AS &#39;/ u01/app/oracle/product/10.2.0/db_1/lib/libqsmashr.so&#39;; <br /><br /> Create or replace dbms_sumadv_lib library, the specific role to be studied (strings, objdump) <br /><br /> execute dbms_datapump_utl.replace_default_dir; <br /><br /> commit; <br /><br /> connect sys / orcl as SYSDBA <br /><br /> alter session set current_schema = ORDSYS; / / ORDSYS for the Oracle interMedia administrator account <br /><br /> @ / U01/app/oracle/product/10.2.0/db_1/ord/im/admin/ordlib.sql;<br /><br /> # Create or replace library ORDIMLIBS as &#39;/ u01/app/oracle/product/10.2.0/db_1/lib/libordim10.so&#39;; <br /><br /> / <br /><br /> create or replace library ORDIMLIBT trusted as static; <br /><br /> / <br /><br /> Rem ordimasf.jar is only available via download from the <br /><br /> Rem Oracle Technology Network website. Go to the interMedia section of <br /><br /> Rem http://otn.oracle.com. <br /><br /> Rem <br /><br /> Rem Uncomment the following lines after downloading ordimasf.jar. <br /><br /> - BEGIN <br /><br /> - Dbms_java.loadjava (&#39;-synonym-schema ORDSYS-resolve-grant PUBLIC ord / jlib / ordimasf.jar&#39;); <br /><br /> - EXCEPTION <br /><br /> - WHEN OTHERS THEN <br /><br /> - NULL; <br /><br /> - END; <br /><br /> - / <br /><br /> / / Switch to the SYS account <br /><br /> alter session set current_schema = SYS; <br /><br /> connect sys / orcl as SYSDBA <br /><br /> execute ORACLE_OCM.MGMT_CONFIG_UTL.create_replace_dir_obj; <br /><br /> execute dbms_swrf_internal.cleanup_database (cleanup_local =&gt; FALSE); <br /><br /> commit; <br /><br /> spool off </blockquote><br /> 9, postDBCreation.sql (create spfile, lift the account lockout, re-compile the invalid objects, reconstruction em database) <br /><br /><blockquote> connect sys / orcl as SYSDBA <br /><br /> set echo on <br /><br /> spool / u01/app/oracle/admin/orcl1/scripts/postDBCreation.log <br /><br /> connect sys / orcl as SYSDBA <br /><br /> set echo on <br /><br /> # Create the spfile <br /><br /> create spfile = &#39;/ u01/app/oracle/product/10.2.0/db_1/dbs/spfileorcl1.ora&#39; FROM pfile = &#39;/ u01/app/oracle/admin/orcl1/scripts/init.ora&#39;; <br /><br /> # Restart instance to start the database using the spfile <br /><br /> shutdown immediate; <br /><br /> connect sys / orcl as SYSDBA <br /><br /> startup; <br /><br /> # Lifted SYSMAN / DBSNMP account locked <br /><br /> alter user SYSMAN identified by &quot;&amp; &amp; sysmanPassword&quot; account unlock; <br /><br /> alter user DBSNMP identified by &quot;&amp; &amp; dbsnmpPassword&quot; account unlock; <br /><br /> select &#39;utl_recomp_begin:&#39; | | to_char (sysdate, &#39;HH: MI: SS&#39;) from dual; <br /><br /> execute utl_recomp.recomp_serial (); <br /><br /> # UTL_RECOMP.RECOMP_SERIAL ( <br /><br /> schema IN VARCHAR2 DEFAULT NULL, <br /><br /> flags IN PLS_INTEGER DEFAULT 0); <br /><br /> Recompile a schema (user) is invalid under the object, if it is NULL then compile the entire database. flags used for internal testing. <br /><br /> select &#39;utl_recomp_end:&#39; | | to_char (sysdate, &#39;HH: MI: SS&#39;) from dual; <br /><br /> # Configuration emca database, reference via <br /><br /> host / u01/app/oracle/product/10.2.0/db_1/bin/emca-config dbcontrol db-silent-DB_UNIQUE_NAME orcl1-PORT 1521-EM_HOME / u01/app/oracle/product/10.2.0/db_1-LISTENER LISTENER -SERVICE_NAME orcl1-SYS_PWD &amp; &amp; sysPassword-SID orcl1-ORACLE_HOME / u01/app/oracle/product/10.2.0/db_1-DBSNMP_PWD &amp; &amp; dbsnmpPassword-HOST localhost.localdomain-LISTENER_OH / u01/app/oracle/product/10.2.0/db_1 - LOG_FILE / u01/app/oracle/admin/orcl1/scripts/emConfig.log-SYSMAN_PWD &amp; &amp; sysmanPassword; <br /><br /> spool / u01/app/oracle/admin/orcl1/scripts/postDBCreation.log </blockquote><h4> Reference: </h4><br /> Official documents: <br /><br /> http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/create.htm # i1008760 <br /><br /> Step by step Oracle: <br /><br /> http://book.csdn.net/bookfiles/453/10045316016.shtml <br /><br /> Oracle XE comes with a database how to create: <br /><br /> http://www.dbanotes.net/database/oracle_xe_hwo_to_create_a_database.html <br /><br /> -EOF-				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/sga-extended-the-principle-of-32bit-oracle/" title="SGA extended the principle of 32bit oracle">SGA extended the principle of 32bit oracle</a> 2009-03-31 09:48:01</li>
					<li><a href="http://www.kods.net/an-example-of-the-use-of-tkprof/" title="An example of the use of TKPROF">An example of the use of TKPROF</a> 2009-02-26 01:38:19</li>
					<li><a href="http://www.kods.net/diagnosis-and-principles-of-order/" title="Diagnosis and principles of order">Diagnosis and principles of order</a> 2009-02-25 20:27:28</li>
					<li><a href="http://www.kods.net/oracle-10g-dataguard-configuration-step-by-step/" title="ORACLE 10G dataguard configuration Step by Step">ORACLE 10G dataguard configuration Step by Step</a> 2009-02-16 01:13:55</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/dbca-building-a-database-script-analysis/</wfw:commentRss>
	</item>
		<item>
		<title>yangtingkun personal BLOG Article Index ---- RAC aspects of</title>
		<link>http://www.kods.net/yangtingkun-personal-blog-article-index-rac-aspects-of/</link>
		<comments>http://www.kods.net/yangtingkun-personal-blog-article-index-rac-aspects-of/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 19:56:30+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[operating system]]></category>
<category><![CDATA[oracle]]></category>
<category><![CDATA[oracle database]]></category>
<category><![CDATA[x86]]></category>
<category><![CDATA[oracle rac]]></category>
<category><![CDATA[software installation]]></category>
<category><![CDATA[oracle software]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[database installation]]></category>
<category><![CDATA[raw device]]></category>
<category><![CDATA[equivalence]]></category>
<category><![CDATA[environment applications]]></category>
<category><![CDATA[examination questions]]></category>
<category><![CDATA[library work]]></category>
<category><![CDATA[personal blog]]></category>
<category><![CDATA[article index]]></category>
		<guid isPermaLink="true">http://www.kods.net/yangtingkun-personal-blog-article-index-rac-aspects-of/</guid>
		<description><![CDATA[RAC areas: Redhat AS4 for x86_64 install Oracle 9204 RAC Overview (1): systems and raw device preparations. Redhat AS4 for x86_64 install Oracle 9204 RAC Overview (2): installation and construction of library work. Oracle 10gr2 Bug 4437727: Installation o]]></description>
		<content:encoded><![CDATA[<font size=2><font face= Tahoma  ><strong>RAC areas:</strong> <br /></font></font> <font face= Tahoma   size=2><font color=#0000ff>Redhat AS4 for x86_64 install Oracle 9204 RAC Overview (1):</font> systems and raw device preparations. <br /> <font color=#0000ff>Redhat AS4 for x86_64 install Oracle 9204 RAC Overview (2):</font> installation and construction of library work. <br /></font> <font face= Tahoma   color=#0000ff size=2>Oracle 10gr2 Bug <font face= Tahoma   size=2>4437727:</font></font> <font face= Tahoma   size=2>Installation of the RAC when 10GR2 encountered bug. <br /> <font color=#0000ff>Solaris8 installed RAC10202 Environment (1):</font> This paper describes the operating system preparations. <br /> <font color=#0000ff>Solaris8 installed RAC10202 Environment (2):</font> ORACLE&#39;s CLUSTERWARE installation. <br /> <font color=#0000ff>Solaris8 installed RAC10202 Environment (3):</font> ORACLE software installation. <br /> <font color=#0000ff>Solaris8 installed RAC10202 Environment (4):</font> ORACLE database building process. <br /> <font color=#0000ff>Solaris8 installed RAC10202 Environment (5):</font> ORACLE database RAC environment, patch installation. <br /> <font color=#0000ff>Solaris8 installed RAC10202 Environment (6):</font> Oracle RAC environment applications 5117016 patch set and the application of this patch set after the bug. <br /> <font color=#0000ff>Solaris8 installed RAC10202 Environment (7):</font> the RAC installation process encountered problems and how resolved. <br /> <font color=#800080>RAC connectivity problem ORA-12545:</font> RAC connectivity problem ORA-12545. <br /> <font color=#0000ff>RAC connectivity problem ORA-12545 (2):</font> This issue another solution. <br /></font> <font face= Tahoma   color=#0000ff size=2>RAC User Equivalence Check <font face= Tahoma   size=2>Failed:</font></font> <font face= Tahoma   size=2>configure RAC using the SSH user equivalence failed the examination questions. <br /> <font color=#0000ff>ORA-17447 error:</font> JDBC driver connectivity problems caused by weblogic. <br /> <font color=#0000ff>Oracle srvctl a small bug:</font> srvctl to record only their own state, without checking the actual operating conditions. <br /> <font color=#0000ff>An ASM environment for troubleshooting:</font> ASM problems caused by lack of space. <br /> <font color=#0000ff>Solaris10 installed Oracle10203RAC Environment (1):</font> RAC installation preparations. <br /> <font color=#0000ff>Solaris10 installed Oracle10203RAC Environment (2):</font> Oracle Clusterware installation process. <br /> <font color=#0000ff>Solaris10 installed Oracle10203RAC Environment (3):</font> Oracle Database installation process. <br /> <font color=#0000ff>Solaris10 installed Oracle10203RAC Environment (4):</font> 10203 patch installation process. <br /> <font color=#0000ff>Solaris10 installed Oracle10203RAC Environment (5):</font> RAC environment, problems encountered during the installation process. <br /> <font color=#0000ff>RAC load balancing a simple test (a):</font> load balancing a simple test. <br /> <font color=#0000ff>RAC load balancing a simple test (2):</font> continue to discuss the load balancing features. <br /> <font color=#0000ff>RAC load balancing a simple test (3):</font> discussion of load balancing and busy instance whether they are related. <br /> <font color=#0000ff>RAC load balancing a simple test (4):</font> continue to discuss the load balancing and busy instance whether they are related. <br /> <font color=#0000ff>Connected after ASM instance ORA-1012 error:</font> is the problems caused by ASM space is full. <br /> <font color=#0000ff>Connected after ASM instance ORA-1012 error (2):</font> The second emergence of this problem and leads to new clues.</font><br /> <font face= Tahoma   size=2><font color=#0000ff>Connected after ASM instance ORA-1012 error (3):</font> description of the problem arising from the real reason. <br /> <font color=#0000ff>RAC Environment Network Fault Testing:</font> To describe the network when the problem occurs on the RAC environment. <br /> <font color=#0000ff>RAC&#39;s TAF simple test (1):</font> TAF function simple test. <br /> <font color=#0000ff>RAC simple test of the TAF (II):</font> FAILOVER the SESSION and SELECT options. <br /> <font color=#0000ff>RAC&#39;s TAF simple test (3):</font> TAF on the transaction effects. <br /> <font color=#0000ff>RAC&#39;s TAF simple test (4):</font> TAF of the BASIC mode and PRECONNECT way. <br /> <font color=#0000ff>RAC&#39;s TAF simple test (5):</font> TAF server-side PRECONNECT settings. <br /> <font color=#800080>RMAN backup and recovery - RAC environment, the database backup (1):</font> RAC environment, backup, recovery and general database backup, restore the difference. <br /> <font color=#800080>RMAN backup and recovery - RAC environment, the database backup (2):</font> Based on raw device backup of RAC environment. <br /> <font color=#800080>RMAN backup and recovery - RAC environment, the database backup (3):</font> Based on the bare device RAC environment recovery. <br /> <font color=#0000ff>RMAN backup and recovery - RAC environment, the database backup (4):</font> RAC environment, backing up to tape libraries as well as the recovery from the tape library. <br /> <font color=#0000ff>RMAN backup and recovery - RAC environment, the database backup (5):</font> RAC local disk backup sets to backup to tape. <br /> <font color=#0000ff>RMAN backup and recovery - RAC environment, the database backup (6):</font> RAC local disk backup set backup to tape after the recovery. <br /> <font color=#0000ff>RMAN backup and recovery - RAC environment, the database backup (7):</font> RAC local disk backup set an example through the recovery process. <br /> <font color=#0000ff>RMAN backup and recovery - RAC environment, the database backup (8):</font> RAC raw device backup ASM solution. <br /> <font color=#800080>RMAN backup and recovery - RAC environment, the database backup (9):</font> RAC raw device backup NFS MOUNT solution. <br /> <font color=#0000ff>RMAN backup and recovery - RAC environment, the database backup (10):</font> RAC raw device backup through remote archiving STANDBY mechanisms to address the problem. <br /> <font color=#0000ff>RMAN backup and recovery - RAC environment, the database backup (11):</font> Based on the raw device backup RAC load-balancing solution. <br /> <font color=#0000ff>RMAN backup and recovery - backup to tape library performance:</font> rac environment, through RMAN backup to tape library performance. <br /> <font color=#0000ff>RMAN backup and recovery - backup to a tape library performance (2):</font> by setting NETBACKUP parameters to solve the problems in the previous article. <br /> <font color=#0000ff>To modify the system time, to restart an instance of a RAC environment:</font> to modify the system time, to restart an instance of a RAC environment. <br /> <font color=#0000ff>Rman backup via NFS Baocuo ORA-27054:</font> RMAN through the NFS backup, recovery time, there will be ORA-27054 error. <br /></font> <font face= Tahoma   color=#0000ff size=2>The name of archived log is <font face= Tahoma   size=2>empty:</font></font> <font face= Tahoma   size=2>the name of archived log is empty issue. <br /> <font color=#0000ff>RAC environment TNSNAMES file:</font> RAC environment TNSNAMES file. <br /> <font color=#0000ff>RAC environment, the password file:</font> RAC environment, the password file. <br /> <font color=#0000ff>RAC environment initialization file:</font> RAC environment initialization file.</font><br /> <font face= Tahoma   size=2><font color=#0000ff>RAC environment, a snapshot control file:</font> RAC environment, a snapshot control file <br /></font> <font face= Tahoma   color=#0000ff size=2>A tape library backup <font face= Tahoma   size=2>Exception:</font></font> <font face= Tahoma   size=2>Test RAC backup when a node backup to tape libraries abnormal. <br /> <font color=#0000ff>RAC environment, recovery strategies:</font> a backup strategy for backup and recovery. <br /> <font color=#0000ff>RAC environment, modify the system time may cause SRVCTL command failed:</font> RAC environment, modify the system time, to a SRVCTL command failed. <br /> <font color=#0000ff>RAC environment, an instance of delete by another instance of the deleted table Baocuo:</font> RAC environment, if an instance of deleted table, the table As for the Recycle Bin, in another instance of trying to delete the same name as the table will complain. <br /> <font color=#0000ff>srvctl add database information Baocuo:</font> srvctl add database information Bao Cuo. <br /> <font color=#0000ff>ORACLE RAC environment, the use of TAR to restore the software directory:</font> Using tar to restore ORACLE RAC environment, the process of the software directory. <br /> <font color=#0000ff>ORA-600 (kolaslGetLength-1) Error:</font> Access GV $ SQL view, a result of bug. <br /> <font color=#0000ff>10GRAC the database using RMAN to establish DATA GUARD:</font> RMAN build 10G of the RAC environment, DATA GUARD. <br /> <font color=#0000ff>RAC environment, the establishment of DATA GUARD emerged after the 1677 error:</font> RAC environment, the establishment of a DATA GUARD after, RAC environment, an instance of the closure can not start, error from the: ORA-1677. <br /> <font color=#0000ff>SWITCHOVER RAC database for the ORA-1093:</font> Oracle10g RAC environment in the implementation of SWITCHOVER operation ORA-1093 error occurs. <br /> <font color=#0000ff>SWITCHOVER RAC database for the ORA-600 (kcctrdf_2) Error:</font> SWITCHOVER RAC database for the ORA-600 (kcctrdf_2) error. <br /> <font color=#0000ff>RAC environment, the SWITCHOVER physical STANDBY switch:</font> RAC environment database SWITCHOVER to switch to a single-instance database. <br /> <font color=#0000ff>RAC installation appears ORA-341 and ORA-312 error:</font> RAC Database Baocuo during the diagnostic process. <br /> <font color=#0000ff>RAC environment, STANDBY database backup Baocuo:</font> Rac environment, execute commands Baocuo STANDBY database error number is: RMAN-04022. <br /> <font color=#0000ff>RAC environment, not other instances of queries executed SQL:</font> an instance to another instance may be unable to check on the implementation of SQL. <br /> <font color=#0000ff>RAC environment, space is filled after the ASM archive issues:</font> RAC environment, space is filled after the ASM archive problem. <br /> <font color=#0000ff>RAC environment, the definition of operation using online re-emergence bug:</font> RAC environment, the definition of operation using online re-emergence bug. <br /> <font color=#0000ff>RAC environment, an example of another instance when it will archive the log:</font> to explain why sometimes found in an instance where the server contains the archive logs to another server. <br /> <font color=#0000ff>ORA-7445 (kkttrex) Error:</font> RAC environment, SHUTDOWN triggers caused by bug. <br /> <font color=#0000ff>Specify the different RAC instances for a different SPFILE:</font> RAC were multiple instances can be started with a different SPFILE. <br /> <font color=#0000ff>Solaris10 installed Oracle1106RAC Environment (1):</font> First set up the operating environment information. <br /> <font color=#0000ff>Solaris10 installed Oracle1106RAC Environment (2):</font> This description of Oracle Clusterware installation. <br /> <font color=#0000ff>Solaris10 installed Oracle1106RAC Environment (3):</font> This describes the installation of Oracle Database.</font><br /> <font face= Tahoma   size=2><font color=#0000ff>Solaris10 installed Oracle1106RAC Environment (4):</font> This describes the process of Oracle&#39;s Database. <br /> <font color=#0000ff>Solaris10 installed Oracle1106RAC Environment (5):</font> Record what this RAC installation process encountered errors. <br /> <font color=#0000ff>RAC environment for parallel query support:</font> RAC environment, a parallel implementation may be distributed to the multiple instances to run. <br /> <font color=#0000ff>ASM Tools asmcmd:</font> Oracle does offer a number of tools to access the ASM disk group, asmcdm is one of the tools. <br /> <font color=#0000ff>asmcmd the cp command a small bug:</font> asmcmd added new cp command allows users to copy files between ASM and the operating system. <br /> <font color=#0000ff>ASMCMD command copies document errors ORA-15046:</font> copy data files using ASMCMD when this error. <br /> <font color=#0000ff>ASM disk group to visit via FTP:</font> The FTP-access to ASM disk group files. <br /> <font color=#0000ff>Connect to the database when Baocuo ORA-12520 and ORA-12516 error:</font> In the local recovery of a RAC database, connect to the database by setting Baocuo ORA-12520. <br /> <font color=#0000ff>Try to start the database without parameters Baocuo ORA-304 error:</font> a has been configured RAC + ASM environment, database, try to use RMAN without arguments to start, there has been an error ORA-304. <br /> <font color=#0000ff>Restoration of the RAC database, RESTORE:</font> Analog RAC environment, the collapse of the new server RESTORE process. <br /> <font color=#0000ff>Restoration of the RAC database RECOVER:</font> Analog RAC environment, the collapse of the new server RECOVER process. <br /> <font color=#0000ff>Resulted in the recovery process exception ORA-600 and ORA-7445 error:</font> Due to an error recovery operations has led to open a database Baocuo. <br /> <font color=#0000ff>Once the command line to add DISK experience:</font> try to use the command line to add in the ASM disks. <br /> <font color=#0000ff>Can the same server, the deployment of two RAC environment:</font> to explore whether the same server, the deployment of multiple sets of RAC environment. <br /> <font color=#0000ff>ORA-600 (2037) Error:</font> for 11g&#39;s RAC recovery process, in the background ALERT file to see the error. <br /> <font color=#0000ff>WEBLOGIC connect Oracle RAC load balancing test:</font> Test single-instance and RAC environment, each node of the load. <br /> <font color=#0000ff>Restoration of the RAC database DUPLICATE (1):</font> This describes the preparation of DUPLICATE command. <br /> <font color=#0000ff>Restoration of the RAC database DUPLICATE (2):</font> This describes the implementation of DUPLICATE command. <br /> <font color=#0000ff>Restoration of the RAC database DUPLICATE (3):</font> This describes DUPLICATE command after the execution of the finishing operation. <br /> <font color=#0000ff>RMAN implementation of the RAC database DUPLICATE operation Baocuo ORA-12720:</font> try to RAC environment, implementation of the DUPLICATE operation Baocuo. <br /> <font color=#0000ff>RAC environment, the physical STANDBY switch to switch the FAILOVER:</font> Shu-RAC environment database FAILOVER to switch to a single-instance database. <br /> <font color=#0000ff>Silent Mode Uninstall 11G RAC database:</font> description of 11G RAC database SILENT unloading method. <br /> <font color=#0000ff>Silent Mode Uninstall 11G RAC database software:</font> Description 11G RAC database software, uninstall SILENT mode. <br /> <font color=#0000ff>Solaris10 Silent Mode Uninstall 11G RAC CLUSTER Environment:</font> 11G RAC described in the CLUSTER environment SILENT unloading method. <br /> <font color=#0000ff>Use SRVCTL to add database information:</font> Use SRVCTL manually add the database information.</font><br /> <font face= Tahoma   size=2><font color=#0000ff>11G RAC environment, the STANDBY some minor problems:</font> 11g a STANDBY database can be open simultaneously in the application log of the database, but for the RAC environment, there are some minor problems. <br /> <font color=#0000ff>A Windows environment, memory size beyond the scope of problem-solving:</font> Since the creation of SGA too large, more than 32 Windows environment, the maximum allowed memory, causing Windows environment can not start normally. <br /> <font color=#0000ff>RAC Start Baocuo can not access the OCR device:</font> As issue of Veritas of the CFS led to a short time can not access the shared OCR device RAC. <br /> <font color=#0000ff>11gRAC can kill other instances on the session:</font> RAC environment, Oracle11g has added a new statement, made in the current instance DBA can kill other instances on the RAC session. <br /> <font color=#0000ff>Silent Mode Installation Oracle1106RAC under Solaris10 Environment (1):</font> Set the operating system of environmental information. <br /> <font color=#0000ff>Silent Mode Installation Oracle1106RAC under Solaris10 Environment (2):</font> describe the installation of the software CLUSTER preparations. <br /> <font color=#0000ff>Silent Mode Installation Oracle1106RAC under Solaris10 Environment (3):</font> Description SILENT mode CLUSTER software installation. <br /> <font color=#0000ff>Silent Mode Installation Oracle1106RAC under Solaris10 Environment (4):</font> description of SILENT mode, the database software installation preparations. <br /> <font color=#0000ff>Silent Mode Installation Oracle1106RAC under Solaris10 Environment (5):</font> Description SILENT mode, database software installation process. <br /> <font color=#0000ff>Silent Mode Installation Oracle1106RAC under Solaris10 Environment (6):</font> description of SILENT mode, ASM instance creation. <br /> <font color=#0000ff>Silent Mode Installation Oracle1106RAC under Solaris10 Environment (7):</font> description of SILENT mode, the database instance creation. <br /> <font color=#0000ff>Silent Mode Installation Oracle1106RAC under Solaris10 Environment (8):</font> describe the problems encountered during the installation process. <br /> <font color=#800080>RAC environment in the ASM to create the table space error ORA-569:</font> Description ASM to create the table space is the error as well as the settlement process. <br /> <font color=#800080>ORA-16146 error:</font> RAC environment, two instances of the same time archive to a remote node issues arising. <br /> <font color=#0000ff>RAC environment, ROLLING UPGRADE apply the PATCH:</font> RAC environment to support ROLLING UPGRADE install PATCH. <br /> <font color=#0000ff>Flexibility to achieve the three-node RAC load balancing and TAF configuration (1):</font> This paper gives the realization of issues and problems. <br /> <font color=#0000ff>Flexibility to achieve the three-node RAC load balancing and TAF configuration (II):</font> testing whether the implementation is given to meet demand. <br /> <font color=#0000ff>Flexibility to achieve the three-node RAC load balancing and TAF configuration (3):</font> The settlement of a node does not start to bring the connection failures. <br /> <font color=#0000ff>Flexibility to achieve the three-node RAC load balancing and TAF configuration (4):</font> solve the examples 1 and examples of two consecutive failures caused by ORA-3113 error. <br /> <font color=#0000ff>CLUSTER_DATABASE_INSTANCES parameter:</font> This parameter is not a set number of database instances. <br /> <font color=#0000ff>RAC parameters may lead to changes in the parameters of the problem of inconsistent:</font> some of the parameters required for each RAC node, set the same. <br /> <font color=#0000ff>Add a new instance using the DBCA when CRS-215 error:</font> When you add a new instance of the CRS-215 encountered an error. <br /></font> <font face= Tahoma   color=#0000ff size=2>Single-instance database by hand into multi-instance <font face= Tahoma   size=2>database:</font></font> <font face= Tahoma   size=2>How to a RAC environment, the single-instance database into a multi-instance database.</font><br /> <font face= Tahoma   color=#0000ff size=2>Single-instance database tools into multi-instance <font face= Tahoma   size=2>database:</font></font> <font face= Tahoma   size=2>the use of Oracle tool for transformation. <br /></font> <font face= Tahoma   color=#0000ff size=2>Multi-instance database to delete an <font face= Tahoma   size=2>instance:</font></font> <font face= Tahoma   size=2>In the database layer how to delete an instance. <br /> <font color=#0000ff>Oracle11g RAC instance shut down automatically at startup instance archiving:</font> 11g&#39;s RAC environment, archive mode, when a node goes down, another node automatically switch off the node logs, and archived to the local node. <br /> <font color=#0000ff>RAC database creation STANDBY (1):</font> Introduction STANDBY database preparation and creation process. <br /> <font color=#0000ff>RAC database creation STANDBY (2):</font> Introduction STANDBY database to create a follow-up operation, and check the STANDBY operation mechanism. <br /> <font color=#0000ff>RAC database creation STANDBY (3):</font> Record what STANDBY database creation process encountered problems. <br /> <font color=#0000ff>RAC database creation STANDBY (4):</font> continue to record STANDBY database creation process encountered problems. <br /> <font color=#0000ff>RAC database creation STANDBY (5):</font> Create a STANDBY database, the third part of the problem summary. <br /> <font color=#0000ff>RAC database creation STANDBY (6):</font> Creating a STANDBY database summarizes the fourth part of the problem. <br /></font> <font face= Tahoma   color=#0000ff size=2>Query initialization parameters of the method <font face= Tahoma   size=2>(3):</font></font> <font face= Tahoma   size=2>V $ SPPARAMETER view GV $ PARAMETER view on the difference. <br /> <font color=#0000ff>Query initialization parameters of the method (4):</font> GV $ SPPARAMETER parameters describing the need. <br /> <font color=#0000ff>ASM instance using the CREATE PFILE FROM MEMORY the bug:</font> This command for the ASM instance is concerned, there is bug. <br /> <font color=#0000ff>RAC one node to another node to restore the backup tape library:</font> How one node to another node to restore the backup tape library. <br /></font> <font face= Tahoma   size=2><br /> <font color=#0000ff>RAC environment, STANDBY the FAILOVER switch:</font> RAC environment STANDBY database FAILOVER switch. <br /> <font color=#800080>RAC environment has ORA-439 Error:</font> upgrade a production environment encountered ORA-439 errors. <br /> <font color=#0000ff>RAC environments encountered ORA-4063 error:</font> RAC environment, the query a view emerged ORA-4063 error. <br /> <font color=#0000ff>ftp to the ASM disk group path error of the problem:</font> the way through FTP, using the data files copied to the ASM disk group, the results are not careful can lead to data files copied to the wrong directory. <br /> <font color=#0000ff>Install CLUSTER encounter Assertion failed offset fFileSize Error:</font> Installation CLUSTER encountered problems. <br /> <font color=#0000ff>RAC environment, the creation of logical STANDBY:</font> This paper describes the RAC database to create logical STANDBY. <br /> <font color=#0000ff>RMAN to delete archived log directory when the ASM over the deletion of:</font> RMAN command to delete archived logs are stored on ASM, if the archive directory is empty, then the ASM over the directory is also delete. <br /> <font color=#800080>ORA-600 (kjbrchkpkeywait: timeout) and the ORA-600 (kclcls_8) Error:</font> the implementation of the table space after the migration operation, RAC database, the above error occurred. <br /> <font color=#800080>ORA-600 (kmgs_parameter_update_timeout_1) Error:</font> background MMON a long process leading to the error SPFILE can not be updated. <br /> <font color=#800080>ORA-600 (ktte_append_file_info-1) Error:</font> startup process MMON process leading to errors.</font><br /> <font face= Tahoma   size=2><font color=#0000ff>RAC environment, LOGICAL STANDBY switch to SWITCHOVER:</font> tell us about the RAC environment LOGICAL STANDBY database SWITCHOVER switch. <br /> <font color=#0000ff>RAC environment, LOGICAL STANDBY switch the FAILOVER:</font> tell us about the RAC environment, LOGICAL STANDBY database FAILOVER switch. <br /> <font color=#0000ff>RAC environment, adjust the system time:</font> RAC environment, how to adjust the system time in order to avoid the node to restart. <br /> <font color=#0000ff>Memories of the 10K space:</font> 10K of space left by the description of a lesson. <br /> <font color=#800080>ORA-600 (KCLEXPAND_5) Error:</font> a more serious bug, has led to instances of a RAC environment to restart. <br /> <font color=#0000ff>The establishment of ASM disk group Baocuo ORA-15063:</font> for the RAC environment, to create the disk group, ran into this error. <br /> <font color=#0000ff>An RMAN backup Baocuo diagnostic procedure (1):</font> describe the problem situation. <br /> <font color=#0000ff>An RMAN backup Baocuo diagnostic process (2):</font> tracking error message, search for positioning direction. <br /> <font color=#0000ff>An RMAN backup Baocuo diagnostic procedure (3):</font> JOB long time to resolve outstanding issues. <br /> <font color=#0000ff>An RMAN backup Baocuo diagnostic procedure (4):</font> Continue to clear the dead in the database session. <br /> <font color=#0000ff>An RMAN backup Baocuo diagnostic procedure (5):</font> racgimon and racgmain check by removing the process to try to resolve the issue. <br /> <font color=#0000ff>An RMAN backup Baocuo diagnostic procedure (6):</font> solve the cluster can not start problems. <br /> <font color=#0000ff>RAC environment has Waiting for instances to leave information (1):</font> description of the problem of the discovery process. <br /> <font color=#800080>RAC environment has Waiting for instances to leave information (2):</font> describe the problem solving process. <br /> <font color=#0000ff>Add a new node Oracle10203RAC environment (1):</font> This paper describes the process of preparing. <br /> <font color=#0000ff>Add a new node Oracle10203RAC environment (2):</font> describe the CLUSTER software was established. <br /> <font color=#0000ff>Add a new node Oracle10203RAC environment (3):</font> describe the establishment of database software and create ASM instance. <br /> <font color=#0000ff>Add a new node Oracle10203RAC environment (4):</font> add a new database instance on the node. <br /> <font color=#0000ff>Add a new node Oracle10203RAC environment (5):</font> describes the software installation process to add node problems they encountered. <br /> <font color=#0000ff>Add a new node Oracle10203RAC Environment (6):</font> description of the database to add the node to add instances of problems they encountered in the process. <br /> <font color=#0000ff>CLUSTER start Baocuo can not access the physical device:</font> a test environment a node in the RAC database crash after the accident found that CLUSTER can not start. <br /> <font color=#0000ff>RAC raw device for OCR device to establish inconsistency problem:</font> each node of the OCR setting corresponds to the physical device names may be inconsistent. <br /> <font color=#800080>STANDBY single instance of the use of database upgrade to RAC environment (1):</font> Introduction STANDBY databases preparations. <br /> <font color=#0000ff>STANDBY single instance of the use of database upgrade to RAC environment (2):</font> Introduction STANDBY database was established. <br /> <font color=#800080>STANDBY single instance of the use of database upgrade to RAC environment (3):</font> describe the single-instance environment and RAC environment SWITCHOVER process.</font><br /> <font face= Tahoma   size=2><font color=#0000ff>STANDBY single instance of the use of database upgrade to RAC environment (4):</font> description of the operation encountered an error. <br /> <font color=#800080>VOTING disk failure resulting in the database server restart:</font> Since the fiber card multi-path errors, leading to RAC instance to restart. <br /> <font color=#800080>Oracle10203RAC Environmental Remove Node (1):</font> Introduction to delete Oracle database instance. <br /> <font color=#800080>Oracle10203RAC Environmental remove node (2):</font> Introduction Oracle Clusterware to delete the node. <br /> <font color=#0000ff>Oracle10203RAC Environmental remove nodes (3):</font> Introduction Oracle software environment to date. <br /><br /></font>				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/sga-extended-the-principle-of-32bit-oracle/" title="SGA extended the principle of 32bit oracle">SGA extended the principle of 32bit oracle</a> 2009-03-31 09:48:01</li>
					<li><a href="http://www.kods.net/using-sql-trace-and-tkprof/" title="Using SQL TRACE and TKPROF">Using SQL TRACE and TKPROF</a> 2009-02-26 21:36:37</li>
					<li><a href="http://www.kods.net/diagnosis-and-principles-of-order/" title="Diagnosis and principles of order">Diagnosis and principles of order</a> 2009-02-25 20:27:28</li>
					<li><a href="http://www.kods.net/oracle-10g-dataguard-configuration-step-by-step/" title="ORACLE 10G dataguard configuration Step by Step">ORACLE 10G dataguard configuration Step by Step</a> 2009-02-16 01:13:55</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/yangtingkun-personal-blog-article-index-rac-aspects-of/</wfw:commentRss>
	</item>
		<item>
		<title>TNS-12555: TNS: permission denied error solution</title>
		<link>http://www.kods.net/tns-12555-tns-permission-denied-error-solution/</link>
		<comments>http://www.kods.net/tns-12555-tns-permission-denied-error-solution/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 17:57:08+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle]]></category>
<category><![CDATA[oracle 10g]]></category>
<category><![CDATA[linux]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[google]]></category>
<category><![CDATA[protocol adapter]]></category>
<category><![CDATA[oracle directory]]></category>
<category><![CDATA[insufficient privilege]]></category>
<category><![CDATA[chmod 777]]></category>
<category><![CDATA[permission denied error]]></category>
		<guid isPermaLink="true">http://www.kods.net/tns-12555-tns-permission-denied-error-solution/</guid>
		<description><![CDATA[Redhat linux as4, after re-install Oracle 10g to start listening, the newspaper the following error: TNS-12555: TNS: permission denied TNS-12560: TNS: protocol adapter error TNS-00525: Insufficient privilege for operation Linux Error: 1: Operation no ...]]></description>
		<content:encoded><![CDATA[Redhat linux as4, after re-install Oracle 10g to start listening, the newspaper the following error: <br /><br /><strong></strong><br /><br /> <font color=#ff0000>TNS-12555: TNS: permission denied <br /> TNS-12560: TNS: protocol adapter error <br /> TNS-00525: Insufficient privilege for operation <br /> Linux Error: 1: Operation not permitted</font> <br /><br /> <strong><font color=#ff0000></font></strong> <br /><br /> <font color=#000000>The error from with the rights related to some google, resolved as follows:</font> <br /><br /> <font color=#000000># Chmod 777 / var / tmp / .oracle</font> <br /><br /><font color=#000000></font><br /><br /> <font color=#000000>Analysis: Oracle should be uninstalled is not clean, resulting in / var / tmp / .oracle directory permissions insufficient and therefore I Bao Cuo.</font>				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/sga-extended-the-principle-of-32bit-oracle/" title="SGA extended the principle of 32bit oracle">SGA extended the principle of 32bit oracle</a> 2009-03-31 09:48:01</li>
					<li><a href="http://www.kods.net/an-example-of-the-use-of-tkprof/" title="An example of the use of TKPROF">An example of the use of TKPROF</a> 2009-02-26 01:38:19</li>
					<li><a href="http://www.kods.net/diagnosis-and-principles-of-order/" title="Diagnosis and principles of order">Diagnosis and principles of order</a> 2009-02-25 20:27:28</li>
					<li><a href="http://www.kods.net/oracle-10g-dataguard-configuration-step-by-step/" title="ORACLE 10G dataguard configuration Step by Step">ORACLE 10G dataguard configuration Step by Step</a> 2009-02-16 01:13:55</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/tns-12555-tns-permission-denied-error-solution/</wfw:commentRss>
	</item>
		<item>
		<title>The use of VMware Server on Linux to install Oracle RAC (1)</title>
		<link>http://www.kods.net/the-use-of-vmware-server-on-linux-to-install-oracle-rac-1/</link>
		<comments>http://www.kods.net/the-use-of-vmware-server-on-linux-to-install-oracle-rac-1/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 04:36:35+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle rac]]></category>
<category><![CDATA[virtual machine]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[real application clusters]]></category>
<category><![CDATA[oracle enterprise]]></category>
<category><![CDATA[oracle real application clusters]]></category>
<category><![CDATA[oracle openworld 2006]]></category>
<category><![CDATA[red hat linux]]></category>
<category><![CDATA[rac 1]]></category>
<category><![CDATA[oracle unbreakable linux]]></category>
<category><![CDATA[vincent chan]]></category>
<category><![CDATA[multiple operating systems]]></category>
<category><![CDATA[virtual components]]></category>
<category><![CDATA[client tool]]></category>
<category><![CDATA[physical computer]]></category>
<category><![CDATA[addition students]]></category>
<category><![CDATA[virtual environment]]></category>
<category><![CDATA[advanced server]]></category>
<category><![CDATA[operating environment]]></category>
<category><![CDATA[ftp client]]></category>
		<guid isPermaLink="true">http://www.kods.net/the-use-of-vmware-server-on-linux-to-install-oracle-rac-1/</guid>
		<description><![CDATA[The use of VMware Server on Oracle Enterprise Linux to install Oracle RAC 10 g Author: Vincent Chan The use of a virtual machine in Oracle Enterprise Linux on a free trial of Oracle Real Application Clusters 10 g Release 2 Published in January 2007 M ...]]></description>
		<content:encoded><![CDATA[<strong>The use of VMware Server on Oracle Enterprise Linux to install Oracle RAC 10 <i>g</i></strong> <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p><br /><br /> <i>Author: Vincent Chan</i> <o:p></o:p><br /><br /> <strong>The use of a virtual machine in Oracle Enterprise Linux on a free trial of Oracle Real Application Clusters 10 <i>g</i> Release 2</strong> <o:p></o:p><br /><br /> Published in January 2007 <o:p></o:p><br /><br /><hr align=center width="100%" size=2><br /><br /> Modified Wilson Note: In order to facilitate the completion of this experiment better for beginners, Wilson carried out a number of comments on this article <o:p></o:p><br /><br /> This need VMware server <?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:chsdate w:st="on" isrocdate="False" islunardate="False" day="30" month="12" year="1899"> 1.0.3 </st1:chsdate> License is: <o:p></o:p><br /><br /> License 1: 98XY4-54VA4-4216V-4PDZ6 <o:p></o:p><br /><br /> License 2: WH0M5-XW50J-WA4FU-4MTZ3 <o:p></o:p><br /><br /> In addition, students should also download an FTP client tool used to host a variety of software from Windows to Linux virtual machine to send them. The best The tool supports ssh2 over ftp protocol is recommended to use FileZilla: http://filezilla.sourceforge.net/ <o:p></o:p><br /><br /> Any questions on this article, please send to wilsonwang66@yahoo.com <o:p></o:p><br /><br /><hr align=center width="100%" size=2><br /><br /> Oracle OpenWorld 2006 in October on the referral of the Oracle Unbreakable Linux to Red Hat Linux is designed to provide enterprise-class support services, more quickly fix errors, and significantly lower support prices. In addition, Oracle&#39;s own Enterprise Linux (based on inclusion of additional bug fixes for Red Hat Advanced Server Version 4 (Update 4)) available for free <font color=#000000>download.</font> <o:p></o:p><br /><br /> Therefore, it can be VMware Server (VMware provides a free virtual environment), free to use on a home computer running on Red Hat Advanced Server on Oracle Real Application Clusters (RAC) 10 <i>g.</i> <o:p></o:p><br /><br /><hr align=center width="100%" size=2><br /><br /> Wilson Note: You can choose to Redhat AS4 / CentOS 4.4 / Oracle Unbreakable Linux 4 on this study. For beginners, it is recommended to use Oracle&#39;s Linux, so as to avoid the experiment encountered more trouble. Students can go to download www.tuningking.com media related to Linux. <o:p></o:p><br /><br /><hr align=center width="100%" size=2><br /><br /> VMware Server allows you to a single physical computer run multiple operating systems. Each virtual machine is an independent operating environment, and with a group of its own virtual components, such as disk, processor and memory. Virtual technology is useful in computing environments, which allows you to the same physical host, independently develop and test software in order to prevent damage to data or software. VMware software is widely used in server consolidation to reduce the total cost of ownership and speed up application development and testing cycles. <o:p></o:p><br /><br /> In this guide, you will learn how to install and configure the two in the Enterprise Linux and VMware Server running on Oracle RAC 10 <i>g</i> Release 2 node. Note that this guide is only for teaching / evaluation purposes; Oracle and other suppliers will not be based configuration support. <br /><br /> This guide is divided into the following sections: <o:p></o:p><br /><br /> 1. <font color=#999999>Hardware requirements and an overview of</font> <o:p></o:p><br /><br /> 2. <font color=#999999>To configure the first virtual machine</font> <o:p></o:p><br /><br /> 3. <font color=#999999>In the first virtual machine to configure Enterprise Linux</font> <o:p></o:p><br /><br /> 4. <font color=#999999>To create and configure the second virtual machine</font> <o:p></o:p><br /><br /> 5. <font color=#999999>Configure Oracle Automatic Storage Management (ASM)</font> <o:p></o:p><br /><br /> 6. <font color=#999999>Configure Oracle Cluster File System (OCFS2)</font> <o:p></o:p><br /><br /> 7. <font color=#999999>Install Oracle Clusterware</font> <o:p></o:p><br /><br /> 8. <font color=#999999>Install Oracle Database 10 <i>g</i> Release 2</font> <o:p></o:p><br /><br /> 9. <font color=#999999>Explore the RAC Database Environment</font> <o:p></o:p><br /><br /> 10. <font color=#999999>Test Transparent Application Failover (TAF)</font> <o:p></o:p><br /><br /> 11. <font color=#999999>Database Backup and Recovery</font> <o:p></o:p><br /><br /> 12. <font color=#999999>Explore Oracle Enterprise Manager (OEM) Database Console</font> <o:p></o:p><br /><br /> 13. <font color=#999999>Frequently Asked Questions</font> <o:p></o:p><br /><br /> <strong>1. Hardware requirements and an overview of</strong> <o:p></o:p><br /><br /> In this guide, you will install 32-bit Linux guest operating systems. Only the host running the following 64-bit processors support 64-bit guest operating systems: <o:p></o:p><br /><br /><ul type=disc><li"MARGIN: 0cm 0cm 0pt; COLOR: black; LINE-HEIGHT: 10.5pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; tab-stops: list 36.0pt; mso-list: l24 level1 lfo2"> AMD Athlon 64 revision D or later <o:p></o:p></li><li"MARGIN: 0cm 0cm 0pt; COLOR: black; LINE-HEIGHT: 10.5pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; tab-stops: list 36.0pt; mso-list: l24 level1 lfo2"> AMD Opteron revision E or later <o:p></o:p></li><li"MARGIN: 0cm 0cm 0pt; COLOR: black; LINE-HEIGHT: 10.5pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; tab-stops: list 36.0pt; mso-list: l24 level1 lfo2"> AMD Turion 64 revision E or later <o:p></o:p></li><li"MARGIN: 0cm 0cm 0pt; COLOR: black; LINE-HEIGHT: 10.5pt; TEXT-ALIGN: left; mso-pagination: widow-orphan; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; tab-stops: list 36.0pt; mso-list: l24 level1 lfo2"> AMD Sempron 64-bit-capable revision D or later Intel EM64T VT-capable processor <o:p></o:p></li></ul><br /> If you decide to install a 64-bit guest operating systems, make sure your processor listed above. You also need to ensure that the BIOS is enabled virtualization technology (VT). Some mainstream manufacturers is disabled by default in the technology. <font color=#000000>Here</font> provides information on processor compatibility for additional information. <br /> To verify that your processor is supported, please <font color=#000000>download</font> from the VMware processor compatibility checker. <o:p></o:p><br /><br /> For each virtual machine, allocate at least 700MB memory; for all the virtual machines set aside at least 30GB of disk space. <o:p></o:p><br /><br /> The host operating system environment profile: <o:p></o:p><br /><br /><table"WIDTH: 80%; mso-padding-alt: 3.0pt 3.0pt 3.0pt 3.0pt; mso-cellspacing: 0cm" cellspacing=0 cellpadding=0 width="80%" border=1><thead><tr><td><br /> Hostname <o:p></o:p><br /><br /></td><td><br /> OS <o:p></o:p><br /><br /></td><td><br /> Processor <o:p></o:p><br /><br /></td><td><br /> Memory <o:p></o:p><br /><br /></td><td><br /> Disk <o:p></o:p><br /><br /></td><td><br /> NIC <o:p></o:p><br /><br /></td></tr></thead><tbody><tr><td valign=top><br /> pacu <o:p></o:p><br /><br /></td><td valign=top><br /> Windows XP Professional Service Pack 2 (32 bit) <o:p></o:p><br /><br /></td><td valign=top><br /> Intel Pentium 4 550, 3.4MHz, HT <o:p></o:p><br /><br /></td><td valign=top><br /> 2 GB DDR2 SDRAM, 533 MHz <o:p></o:p><br /><br /></td><td valign=top><br /> 250 GB, Ultra ATA/133, 7200 RPM <o:p></o:p><br /><br /></td><td valign=top><br /> Intel Pro/1000 MT <o:p></o:p><br /><br /></td></tr></tbody></table><br /><br /> Client operating system environment profile: <o:p></o:p><br /><br /><table"WIDTH: 80%; mso-padding-alt: 3.0pt 3.0pt 3.0pt 3.0pt; mso-cellspacing: 0cm" cellspacing=0 cellpadding=0 width="80%" border=1><thead><tr><td><br /> Hostname <o:p></o:p><br /><br /></td><td><br /> OS <o:p></o:p><br /><br /></td><td><br /> Processor <o:p></o:p><br /><br /></td><td><br /> Memory <o:p></o:p><br /><br /></td></tr></thead><tbody><tr><td valign=top><br /> rac1 <o:p></o:p><br /><br /></td><td valign=top><br /> Oracle Enterprise Linux 4 (32 bit) <o:p></o:p><br /><br /></td><td valign=top><br /> 1 <o:p></o:p><br /><br /></td><td valign=top><br /> 700 MB <o:p></o:p><br /><br /></td></tr><tr><td valign=top><br /> rac2 <o:p></o:p><br /><br /></td><td valign=top><br /> Oracle Enterprise Linux 4 (32 bit) <o:p></o:p><br /><br /></td><td valign=top><br /> 1 <o:p></o:p><br /><br /></td><td valign=top><br /> 700 MB <o:p></o:p><br /><br /></td></tr></tbody></table><br /><br /> Virtual disk layout overview: <o:p></o:p><br /><br /><table"WIDTH: 80%; mso-padding-alt: 3.0pt 3.0pt 3.0pt 3.0pt; mso-cellspacing: 0cm" cellspacing=0 cellpadding=0 width="80%" border=1><thead><tr><td><br /> The virtual disk on the host operating system <o:p></o:p><br /><br /></td><td><br /> Guest operating system on a virtual disk <o:p></o:p><br /><br /></td><td><br /> Virtual device node <o:p></o:p><br /><br /></td><td><br /> Size (MB) <o:p></o:p><br /><br /></td><td><br /> Description <o:p></o:p><br /><br /></td></tr></thead><tbody><tr><td valign=top><br /> d: \ vm \ rac \ localdisk.vmdk <o:p></o:p><br /><br /></td><td valign=top><br /> / dev/sda1 <br /> / dev/sda2 <br /> / dev/sda3 <o:p></o:p><br /><br /></td><td valign=top><br /> SCSI 0:0 <o:p></o:p><br /><br /></td><td valign=top><br /> 20 <o:p></o:p><br /><br /></td><td valign=top><br /> &quot;/&quot; Mount point swap space <br /> Oracle binaries <o:p></o:p><br /><br /></td></tr><tr><td valign=top><br /> d: \ vm \ rac \ sharedstorage \ ocfs2disk.vmdk <o:p></o:p><br /><br /></td><td valign=top><br /> / dev / sdb <o:p></o:p><br /><br /></td><td valign=top><br /> SCSI 1:0 <o:p></o:p><br /><br /></td><td valign=top><br /> 512 <o:p></o:p><br /><br /></td><td valign=top><br /> OCFS2 disk <o:p></o:p><br /><br /></td></tr><tr><td valign=top><br /> d: \ vm \ rac \ sharedstorage \ asmdisk1.vmdk <o:p></o:p><br /><br /></td><td valign=top><br /> / dev / sdc <o:p></o:p><br /><br /></td><td valign=top><br /> SCSI 1:1 <o:p></o:p><br /><br /></td><td valign=top><br /> 3072 <o:p></o:p><br /><br /></td><td valign=top><br /> ASM Disk Group 1 <o:p></o:p><br /><br /></td></tr><tr><td valign=top><br /> d: \ vm \ rac \ sharedstorage \ asmdisk2.vmdk <o:p></o:p><br /><br /></td><td valign=top><br /> / dev / sdd <o:p></o:p><br /><br /></td><td valign=top><br /> SCSI 1:2 <o:p></o:p><br /><br /></td><td valign=top><br /> 3072 <o:p></o:p><br /><br /></td><td valign=top><br /> ASM Disk Group 1 <o:p></o:p><br /><br /></td></tr><tr><td valign=top><br /> d: \ vm \ rac \ sharedstorage \ asmdisk3.vmdk <o:p></o:p><br /><br /></td><td valign=top><br /> / dev / sde <o:p></o:p><br /><br /></td><td valign=top><br /> SCSI 1:3 <o:p></o:p><br /><br /></td><td valign=top><br /> 2048 <o:p></o:p><br /><br /></td><td valign=top><br /> ASM flash recovery area <o:p></o:p><br /><br /></td></tr></tbody></table><br /><br /> (To configure shared storage, client OS can not share the same shared storage, a SCSI bus. Specify the client OS to use SCSI0, shared disk usage SCSI1.) <o:p></o:p><br /><br /> RAC Database Environment Overview: <o:p></o:p><br /><br /><table"WIDTH: 80%; mso-padding-alt: 3.0pt 3.0pt 3.0pt 3.0pt; mso-cellspacing: 0cm" cellspacing=0 cellpadding=0 width="80%" border=1><thead><tr><td><br /> Hostname <o:p></o:p><br /><br /></td><td><br /> ASM instance name <o:p></o:p><br /><br /></td><td><br /> RAC instance name <o:p></o:p><br /><br /></td><td><br /> Database Name <o:p></o:p><br /><br /></td><td><br /> Database File Storage <o:p></o:p><br /><br /></td><td><br /> OCR and voting disk (Voting Disk) <o:p></o:p><br /><br /></td></tr></thead><tbody><tr><td valign=top><br /> rac1 <o:p></o:p><br /><br /></td><td valign=top><br /> + ASM1 <o:p></o:p><br /><br /></td><td valign=top><br /> devdb1 <o:p></o:p><br /><br /></td><td valign=top><br /> devdb <o:p></o:p><br /><br /></td><td valign=top><br /> ASM <o:p></o:p><br /><br /></td><td valign=top><br /> OCFS2 <o:p></o:p><br /><br /></td></tr><tr><td valign=top><br /> rac2 <o:p></o:p><br /><br /></td><td valign=top><br /> + ASM2 <o:p></o:p><br /><br /></td><td valign=top><br /> devdb2 <o:p></o:p><br /><br /></td><td valign=top><br /> devdb <o:p></o:p><br /><br /></td><td valign=top><br /> ASM <o:p></o:p><br /><br /></td><td valign=top><br /> OCFS2 <o:p></o:p><br /><br /></td></tr></tbody></table><br /><br /> You will install Oracle on each node for redundancy to use your home directory. Each node on the ASM and Oracle RAC instances to share the same Oracle home directory. <o:p></o:p>				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/dba-skills-needed/" title="DBA skills needed">DBA skills needed</a> 2009-06-18 23:59:43</li>
					<li><a href="http://www.kods.net/reprint-rac-database-standby/" title="Reprint - RAC database STANDBY">Reprint - RAC database STANDBY</a> 2009-06-18 11:10:25</li>
					<li><a href="http://www.kods.net/redhat-as4-under-the-startup-script-since-oracle10g/" title="Redhat as4 under the startup script since oracle10g">Redhat as4 under the startup script since oracle10g</a> 2009-06-18 04:02:17</li>
					<li><a href="http://www.kods.net/oracle-installation-difficulties/" title="Oracle installation difficulties">Oracle installation difficulties</a> 2009-04-19 04:08:56</li>
					<li><a href="http://www.kods.net/oracle-10g-rac-error-10-2-0-4-upgrade/" title="ORACLE 10G RAC error 10.2.0.4 upgrade">ORACLE 10G RAC error 10.2.0.4 upgrade</a> 2009-04-13 15:00:05</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/the-use-of-vmware-server-on-linux-to-install-oracle-rac-1/</wfw:commentRss>
	</item>
		<item>
		<title>Redhat as4 since the startup script under the oracle10g</title>
		<link>http://www.kods.net/redhat-as4-since-the-startup-script-under-the-oracle10g/</link>
		<comments>http://www.kods.net/redhat-as4-since-the-startup-script-under-the-oracle10g/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 10:00:40+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[quot]]></category>
<category><![CDATA[oracle]]></category>
<category><![CDATA[oracle home]]></category>
<category><![CDATA[oracle database]]></category>
<category><![CDATA[sid oracle]]></category>
<category><![CDATA[oracle user]]></category>
<category><![CDATA[oracle product]]></category>
<category><![CDATA[oracle installation]]></category>
<category><![CDATA[oracle server]]></category>
<category><![CDATA[oracle c]]></category>
<category><![CDATA[database 2]]></category>
<category><![CDATA[linux system]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[startup script]]></category>
<category><![CDATA[local echo]]></category>
<category><![CDATA[personal summary]]></category>
<category><![CDATA[root account]]></category>
<category><![CDATA[using linux]]></category>
<category><![CDATA[work experience]]></category>
<category><![CDATA[nationality]]></category>
		<guid isPermaLink="true">http://www.kods.net/redhat-as4-since-the-startup-script-under-the-oracle10g/</guid>
		<description><![CDATA[Linux in the Oracle installation is finished, if the re-start Linux, Oracle will not start automatically, you can manually invoke dbstart command to carry out start, but this seems to be cumbersome. We can configure the Oracle automatic startup scrip ...]]></description>
		<content:encoded><![CDATA[Linux in the Oracle installation is finished, if the re-start Linux, Oracle will not start automatically, you can manually invoke dbstart command to carry out start, but this seems to be cumbersome. We can configure the Oracle automatic startup script, and then Service to start using Linux for Oracle server. <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p><br /><br /><o:p></o:p><br /><br /> About oracle install the linux system, how to restart the case in the system for service to start automatically up, there are many online tutorials and ready-made script, here is only my personal summary of the work experience. (The following is for reference only, please do not scripted) <o:p></o:p><br /><br /> In this paper, REDHAT AS4.8 and oracle10G, for example, Oracle installation process can refer to a 64-bit Linux environment, how to install ORACLE10G. <o:p></o:p><br /><br /><o:p></o:p><br /><br /><o:p></o:p><br /><br /> Oracle Database automatically start and stop the Oracle offer dbstart nationality and reach dbshut files. The document also playing to rely on / etc / oratab exists to use. You want to achieve the oracle with the Linux system to automatically start, there are two ways: <o:p></o:p><br /><br /><o:p></o:p><br /><br /> <b>1, set to start automatically starts the database (using the root account)</b> <o:p></o:p><br /><br /> <font size=3>1, change / etc / oratab the last line of</font> <br /> <font size=3>sid: / oracle/product/10.2.0.1: N <br /> = &quot; <br /> sid: / oracle/product/10.2.0.1: Y (where sid you want to start the database)</font> <o:p></o:p><br /><br /><o:p></o:p><br /><br /> <font size=3>2, change / etc / rc.local</font> <o:p></o:p><br /><br /> <font size=3>echo &quot;su - oracle-c &#39;lsnrctl start&#39;&quot;&gt;&gt; / etc / rc.local</font> <o:p></o:p><br /><br /> <font size=3>echo &quot;su - oracle-c &#39;dbstart&#39;&quot;&gt;&gt; / etc / rc.local</font> <o:p></o:p><br /><br /><o:p><font size=3> </font></o:p><br /><br /> <font size=3>Actual operation may appear not automatically start the oracle database, the situation!</font> <o:p></o:p><br /><br /> <font size=3>To oracle editing $ ORACLE_HOME / bin / dbstart, find the first of which 88 lines: ORACLE_HOME_LISTNER = change your own path, or you can change ORACLE_HOME_LISTNER = $ ORACLE_HOME, and $ ORACLE_HOME / bin / dbshut, find the first of which 77 lines: ORACLE_HOME_LISTNER = into your own path, or you can change ORACLE_HOME_LISTNER = $ ORACLE_HOME.</font> <o:p></o:p><br /><br /> <font size=3>Save the script to oracle user to run dbshut and dbstart to see if closed, start the database. If not, is generally set of parameters, according to Baocuo place to find the corresponding changes.</font> <o:p></o:p><br /><br /><o:p><font size=3> </font></o:p><br /><br /> <b>2, configure the Oracle automatic startup script</b> <o:p></o:p><br /><br /> <font size=3>First in / etc / rc.d / init.d / directory services configured Oracle Files</font> <o:p></o:p><br /><br /> <font size=3># touch / etc / rc.d / init.d / oracle</font> <o:p></o:p><br /><br /> <font size=3># chmod 755 / etc / rc.d / init.d / oracle</font> <o:p></o:p><br /><br /> <font size=3># chown-R / ect / rc.d / init.d / oracle</font> <o:p></o:p><br /><br /> <font size=3>Then vi editing oracle file to look at the script in the input to the oracle</font> <o:p></o:p><br /><br /> <font size=3>#! / bin / sh <br /> # <br /> # / Etc / rc.d / init.d / oracle <br /> # Whoami <br /> # Root <br /> # Chkconfig: 345 51 49 <br /> # / Etc / init.d / oracle <br /> # Description: starts the oracle dabase deamons <br /> #</font> <o:p></o:p><br /><br /> <font size=3>case &quot;$ 1&quot; in <br /> start) <br /> echo-n &quot;Starting Oracle Databases:&quot; <br /> echo &quot;------------------------------------------------ ----&quot;&gt;&gt; / var / log / oracle <br /> date + &quot;!% T% a% D: Starting Oracle Databases as part of system up.&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;------------------------------------------------ ----&quot;&gt;&gt; / var / log / oracle <br /> su - oracle-c dbstart&gt;&gt; / var / log / oracle <br /> echo &quot;Done.&quot; <br /> echo-n &quot;Starting Oracle Listeners:&quot; <br /> su - oracle-c &quot;lsnrctl start&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;Done.&quot; <br /> echo &quot;&quot; <br /> echo &quot;------------------------------------------------ ----&quot;&gt;&gt; / var / log / oracle <br /> date + &quot;!% T% a% D: Finished.&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;------------------------------------------------ ----&quot;&gt;&gt; / var / log / oracle <br /> touch / var / lock / subsys / oracle <br /> ;; <br /> stop) <br /> echo-n &quot;Shutting Down Oracle Listeners:&quot; <br /> echo &quot;------------------------------------------------ ----&quot;&gt;&gt; / var / log / oracle <br /> date + &quot;!% T% a% D: Shutting Down Oracle Databases as part of system down.&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;------------------------------------------------ ----&quot;&gt;&gt; / var / log / oracle <br /> su - oracle-c &quot;lsnrctl stop&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;Done.&quot; <br /> rm-f / var / lock / subsys / oracle <br /> echo-n &quot;Shutting Down Oracle Databases:&quot; <br /> su - oracle-c dbshut&gt;&gt; / var / log / oracle <br /> echo &quot;Done.&quot; <br /> echo &quot;&quot;</font><br /> echo &quot;------------------------------------------------ ----&quot;&gt;&gt; / var / log / oracle <br /> date + &quot;!% T% a% D: Finished.&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;------------------------------------------------ ----&quot;&gt;&gt; / var / log / oracle <br /> ;; <br /> restart) <br /> echo-n &quot;Restarting Oracle Databases:&quot; <br /> echo &quot;------------------------------------------------ ----&quot;&gt;&gt; / var / log / oracle <br /> date + &quot;!% T% a% D: Restarting Oracle Databases as part of system up.&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;------------------------------------------------ ----&quot;&gt;&gt; / var / log / oracle <br /> su - oracle-c dbstop&gt;&gt; / var / log / oracle <br /> su - oracle-c dbstart&gt;&gt; / var / log / oracle <br /> echo &quot;Done.&quot; <br /> echo-n &quot;Restarting Oracle Listeners:&quot; <br /> su - oracle-c &quot;lsnrctl stop&quot;&gt;&gt; / var / log / oracle <br /> su - oracle-c &quot;lsnrctl start&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;Done.&quot; <br /> echo &quot;&quot; <br /> echo &quot;------------------------------------------------ ----&quot;&gt;&gt; / var / log / oracle <br /> date + &quot;!% T% a% D: Finished.&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;------------------------------------------------ ----&quot;&gt;&gt; / var / log / oracle <br /> touch / var / lock / subsys / oracle <br /> ;; <br /> *) <br /> echo &quot;Usage: oracle (start | stop | restart)&quot; <br /> exit 1 <br /> esac <o:p></o:p><br /><br /> <font size=3>Save the file, exit after the service to add and start the look.</font> <o:p></o:p><br /><br /> <font size=3># chkconfig - add oracle <br /> # chkconfig - list oracle</font> <o:p></o:p><br /><br /> <font size=3>chkconfig - list oracle operating results:</font> <o:p></o:p><br /><br /> <font size=3>oracle 0: off 1: off 2: off 3: on 4: off 5: on 6: off</font> <o:p></o:p><br /><br /> <font size=3>According to the results of the above operation, when the corresponding run level is on (for example: 5: on), in the corresponding / etc / rc.d / rcN.d (for example: and 5: on corresponds to: / etc / rc .d/rc5.d) The following will generate a file: S95oracle, using the vi S95oracle to open the file, you can see the contents of the file and the / etc / rc.d / init.d / oracle are identical, indicating a successful configuration, in fact, , S95oracle is a reference to / etc / rc.d / init.d / oracle link, we can use the file command to see:</font> <o:p></o:p><br /><br /> <font size=3>$ file / etc/rc.d/rc5.d/S95oracle</font> <o:p></o:p><br /><br /> <font size=3>S95oracle: symbolic link to &#39;.. / init.d / oracle</font> <o:p></o:p><br /><br /> <font size=3>One point:</font> <o:p></o:p><br /><br /> <font size=3>The script file: # chkconfig: 345 51 49</font> <o:p></o:p><br /><br /> <font size=3>Pointed out that the 3,4,5-level to start the service, 95 are in the corresponding / etc / rc.d / rcN.d (N for the front of the specified level, here is the 345) directory link files generated by the serial number (to start the priority level) S95oracle, 10 noted above in addition to the level of the corresponding / etc / rc.d / rcN.d (N, other than a 345 other than level) directory link files generated by the serial number (service stopped priority level) K10oracle</font> <o:p></o:p><br /><br /> <font size=3>Reboot the system, you can see the process start Starting oracle, because we set the priority level of 99, generally the last to start. [OK] later on it. Due to the start emctl, may be a bit slow, the waiting time to be a little bit longer.</font> <br /><br /> <font size=3>After the root can start the implementation of oracle start or oracle stop to start or stop services.</font> <o:p></o:p><br /><br /> <font size=3>Note:</font> <o:p></o:p><br /><br /> <font size=3>This script starts normally does not start instance, if you want to start with instances of the words with the script, you need to modify the file: / etc / oratab <br /> If this file does not exist, then it must run the script file generated sh / u01/app/oracle/product/10.2.0/root.sh</font> <o:p></o:p><br /><br /> <font size=3>Change / etc / oratab the last line of</font> <br /> <font size=3>sid: / oracle/product/10.2.0.1: N <br /> = &quot; <br /> sid: / oracle/product/10.2.0.1: Y (where sid you want to start the database)</font> <o:p></o:p><br /><br /> <font size=3>Just set up here after the tie in with the above script, boot automatically start oracle can be realized, as well as examples of the.</font> <o:p></o:p><br /><br /><o:p><font size=3> </font></o:p><br /><br /><o:p></o:p><br /><br /><o:p></o:p><br /><br /> Common manual control database command to open the em <br /> emctl start dbconsole <br /> Close em <br /> emctl stop dbconsole <br /><br /> Start listener <br /> lsnrctl start &lt;monitor name &quot;(default is LISTENER, can be omitted) <br /> Close <br /> lsnrctl stop <br /><br /> Start emagent <br /> emctl start agent <br /> Close <br /> emctl stop agent <br /><br /> Start an instance of <br /> sqlplus / nolog <br /> conn / as sysdba <br /> startup <br /> Close <br /> shutdown immediate <br /><br /> Pass test database is <br /> tnsping &lt;the local service name &quot; <br /><br /> ======================================== <br /> Frequently Asked Questions: <br /> Web interface buttons appear on the &quot;mouth&quot; of the garbled solution: <br /> 1. Stop the service, emctl stop dbconsole;<br /> 2. To the relevant directory (RHEL4 which is the / etc / java /) under the font.properties use <br /> font.properties.zh_CN.Redhat8.0 replacement (or font.properties.zh, as long as you can Simplified Chinese.); <br /> 3. Delete <br /> $ ORACLE_HOME/oc4j/j2ee/oc4j_applications/applications/em/em/cabo/images/cache/zhs in gif files <br /> ; <br /> 4. Re-play services (preferably to restart the server) emctl start dbconsole; <br /><br /> / etc / oratab the contents of the <br /> orcl: / oracle/10.2.0/db_1: Y <br /> ================================================== === <br /> The following J2EE applications has been configured, and can be used to access the URL listed below. <br /> iSQL * Plus URL: <br /> <font color=#0000ff>http://database:5560/isqlplus</font> <br /> iSQL * Plus DBA URL: <br /> <font color=#0000ff>http://database:5560/isqlplus/dba</font> <br /> Enterprise Manager 10g Database Control URL: <br /> <font color=#0000ff>http://database:1158/em</font> <br /> \ ========================================== <br /><br /> Useful linux commands <br /> df-h <br /> ps-A <br /> top <br /> free <br /> cat / proc / meminfo <br /> uname <br /> grep MemTotal / proc / meminfo <br /> grep SwapTotal / proc / meminfo <br /> hostname				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/sga-extended-the-principle-of-32bit-oracle/" title="SGA extended the principle of 32bit oracle">SGA extended the principle of 32bit oracle</a> 2009-03-31 09:48:01</li>
					<li><a href="http://www.kods.net/diagnosis-and-principles-of-order/" title="Diagnosis and principles of order">Diagnosis and principles of order</a> 2009-02-25 20:27:28</li>
					<li><a href="http://www.kods.net/oracle-10g-dataguard-configuration-step-by-step/" title="ORACLE 10G dataguard configuration Step by Step">ORACLE 10G dataguard configuration Step by Step</a> 2009-02-16 01:13:55</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/redhat-as4-since-the-startup-script-under-the-oracle10g/</wfw:commentRss>
	</item>
		<item>
		<title>standby database upgrade steps</title>
		<link>http://www.kods.net/standby-database-upgrade-steps/</link>
		<comments>http://www.kods.net/standby-database-upgrade-steps/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 00:50:02+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle]]></category>
<category><![CDATA[implementation]]></category>
<category><![CDATA[oracle 10g]]></category>
<category><![CDATA[oracle home]]></category>
<category><![CDATA[pl sql]]></category>
<category><![CDATA[standby database]]></category>
<category><![CDATA[failure]]></category>
<category><![CDATA[linux]]></category>
<category><![CDATA[oracle database server]]></category>
<category><![CDATA[rdbms]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[b machine]]></category>
<category><![CDATA[linux x86]]></category>
<category><![CDATA[database components]]></category>
<category><![CDATA[metalink]]></category>
<category><![CDATA[standby mode]]></category>
<category><![CDATA[original version]]></category>
<category><![CDATA[service pack]]></category>
<category><![CDATA[platforms]]></category>
		<guid isPermaLink="true">http://www.kods.net/standby-database-upgrade-steps/</guid>
		<description><![CDATA[ORACLE 10G data guard upgrade steps The original version 10.2.0.1.0 Upgrade version 10.2.0.3.0 Redhat AS4 for 64bit platforms 1. Metalink to download the service pack p5337014_10203_Linux-x86-64.zip 2. Upgrade steps, the first after the upgrade stand ...]]></description>
		<content:encoded><![CDATA[ORACLE 10G data guard upgrade steps <br /><br /> The original version 10.2.0.1.0 <br /> Upgrade version 10.2.0.3.0 <br /> Redhat AS4 for 64bit platforms <br /><br /> 1. Metalink to download the service pack p5337014_10203_Linux-x86-64.zip <br /><br /> 2. Upgrade steps, the first after the upgrade standby machines are known as B, and then switch to upgrade primary, after all known as the A drive <br /> B Machine 2.1 upgrade, shutdown the database, and then implementation. / RunInstall package patch to start the installation step by step, follow the prompts to install the final patch implementation of the end of the installation root.sh. <br /> 2.2 to amend the compatible parameter spfile, 10.2.0.3.0 to 10.2.0.1.0 changed <br /> 2.3 Start the database, startup mount, and then began to apply log <br /> Alter check log, the log of the application and transfer it to normal, whether there is any error. <br /> As the standby mode, because of inability to open the way to read and write, so can not upgrade the instance of the need to do stanby switch primary. <br /> 2.4 confirmed that there is no problem with synchronous standby after A and B will be a machine switchovers, B Machine has now become primary, the start of B machine upgrade <br /> sqlplus&#39; / as sysdba &#39; <br /> sql&gt; startup upgrade; --- open to upgrade the database, otherwise it is impossible to open the example <br /> sql&gt; @ catupgrd.sql --- the beginning of the upgrade, the script in the $ ORACLE_HOME / rdbms / admin, the role is to identify those who need to run the upgrade script, and will automatically run the install script will upgrade your database components. <br /> # Run the utlrp.sql script to recompile all invalid PL / SQL packages now instead of when the packages are accessed for the first time. This step is optional but recommended. <br /><br /> SQL&gt; @? / Rdbms / admin / utlrp.sql --- compiler about the object of Failure <br /><br /> Probably need to run about 10 minutes, the components with the number of your choice will be, I just installed the Oracle Database Server, so time is not very long. <br /><br /> After the implementation, if there is no error, shutdown immediate closure of the database, and then you can open the database startup. <br /> This time, B machine into a database on the primary database, you can switch to the application on the server. <br /> The beginning of the normal operation of the business, a total downtime of 10 minutes is probably a little more. <br /><br /> 3. Upgrade A drive this time of database A plane has been converted into a standby, in accordance with the above steps, shutdown immediate implementation of the closure of the database. / RunInstall package patch to start the installation step by step, follow the prompts to install the final patch implementation of the end of the installation root.sh . <br /> 3.1 to amend the compatible parameter spfile, 10.2.0.3.0 to 10.2.0.1.0 changed <br /> 3.2 startup mount the database start to begin apply log, look alter the log, the log of the application and transfer it to normal, whether there is any error. <br /> If there is no error, even if the end of the upgrade, some people may ask, this database does not upgrade, that&#39;s right, if the time machine A database upgrade, it will inevitably have to stop, and stop applications, due to the need to switch to standby can be upgraded to primary. <br /> But it does not upgrade, do not affect the application of the log, so the data will always be in sync. <br /> So do not worry at this time to switch, wait until the next machine to switch from the B will be A time machine, and then the database upgrade. <br /> Of course you can switch once again, this time on can also be upgraded, but so down to about 10 minutes, which according to the importance of business to set. <br /><br /> Summary: <br /> The merits of this upgrading is less downtime, easy to operate. The disadvantage is that the operation may require two, because there is an upgrade may have to stay after to do so. <br /> oracle upgrade of the official document is too cumbersome steps to watch, according to their own understanding of the upgrade, the feeling is very quick and easy ~				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/sga-extended-the-principle-of-32bit-oracle/" title="SGA extended the principle of 32bit oracle">SGA extended the principle of 32bit oracle</a> 2009-03-31 09:48:01</li>
					<li><a href="http://www.kods.net/diagnosis-and-principles-of-order/" title="Diagnosis and principles of order">Diagnosis and principles of order</a> 2009-02-25 20:27:28</li>
					<li><a href="http://www.kods.net/oracle-10g-dataguard-configuration-step-by-step/" title="ORACLE 10G dataguard configuration Step by Step">ORACLE 10G dataguard configuration Step by Step</a> 2009-02-16 01:13:55</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/standby-database-upgrade-steps/</wfw:commentRss>
	</item>
		<item>
		<title>linux as4 is installed under the oracle9</title>
		<link>http://www.kods.net/linux-as4-is-installed-under-the-oracle9/</link>
		<comments>http://www.kods.net/linux-as4-is-installed-under-the-oracle9/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 08:29:26+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[operating system]]></category>
<category><![CDATA[oracle]]></category>
<category><![CDATA[as3]]></category>
<category><![CDATA[gcc]]></category>
<category><![CDATA[sleep]]></category>
<category><![CDATA[databases]]></category>
<category><![CDATA[oracle package]]></category>
<category><![CDATA[patches]]></category>
<category><![CDATA[amp]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[driven models]]></category>
<category><![CDATA[redhat9]]></category>
<category><![CDATA[r630]]></category>
<category><![CDATA[experimental technology]]></category>
<category><![CDATA[hungry heart]]></category>
<category><![CDATA[raid card]]></category>
<category><![CDATA[libgcc]]></category>
<category><![CDATA[overtime]]></category>
<category><![CDATA[technical support]]></category>
<category><![CDATA[opera]]></category>
		<guid isPermaLink="true">http://www.kods.net/linux-as4-is-installed-under-the-oracle9/</guid>
		<description><![CDATA[linux as4 is installed under the oracle9 ORACLE patch installed RHAS4 Set http://www.cublog.cn/opera/showart.php?blogid=8463&amp;id=68996 Environment: Lenovo Wanquan R630 (I think there is no good products) customers are using this server, Lenovo ser ...]]></description>
		<content:encoded><![CDATA[<strong>linux as4 is installed under the oracle9</strong> <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p><br /><br /><hr align=center width="100%" noshade size=1><br /><br /> <strong><font face="Times New Roman">ORACLE</font> patch installed <font face="Times New Roman">RHAS4</font> Set</strong> <br /> http://www.cublog.cn/opera/showart.php?blogid=8463&amp;id=68996 <o:p></o:p><br /><br /> Environment: Lenovo Wanquan R630 (I think there is no good products) customers are using this server, Lenovo servers that support the specified REDHAT9. 0 / AS 3/AS4 so start preparing to install REDHAT9. 0J, no corresponding results, RAID card driver telephone to the Lenovo technical support, technical support said they do not support, REDHAT9. 0. Mind the installation of AS3, then the next installation of AS3, or RAID driver, however, Lenovo&#39;s technical support call, it is necessary to drive, said they were not aware of this technology-driven models, but I almost collapsed, tossing the day, and the results of the case. Ah depressing! Later, asked how do we solve this? The answer AS4 experimental technology installed on! So once in a hard-hearted, plus a small equipment Chant  ! It can be said that risk of going through a thousand difficulties, GOOLE, BAIDU a lot of information, finally completed the installation of systems and databases! Hungry heart much good about them! The installation process is now sharing some hope that other brothers and fewer detours, as soon as possible to go back to sleep after work! Originally, there would be no overtime for it! Not worth the overtime too! <br /> A: AS4 operating system installed, choose the best total package to install, or install the ORACLE package to prompt much less. <o:p></o:p><br /><br /> These packages are a must, prior to the installation of ORACLE check: <o:p></o:p><br /><br /> 1, see the development kit has been installed; <br /> Installation packages and patch packages: <br /> p4198954_21_linux.zip play before running runInstaller. <br /> p3238244_9204_LINUX.zip patch to repair the wrong agent. <br /> play p2617419_210_GENERIC.zip patch 3238244 patches needed. <br /> compat-db - <?xml:namespace prefix = st1 ns = "urn:schemas-microsoft-com:office:smarttags" /><st1:chsdate w:st="on" year="1899" month="12" day="30" islunardate="False" isrocdate="False"> 4.1.25 </st1:chsdate> -9 <br /> compat-gcc-32-3.2.3-47.3 <br /> compat-gcc-32-c + + -3.2.3-47.3 <br /> compat-oracle-rhel4-1.0-3 <br /> compat-libcwait-2.0-1 <br /> compat-libgcc-296-2.96-132.7.2 <br /> compat-libstdc + + -296-2.96-132.7.2 <br /> compat-libstdc + + -33-3.2.3-47.3 <br /> gcc-3.4.3-9.EL4 <br /> gcc-c + +-3.4.3-9.EL4 <br /> gnome-libs-1.4.1.2.90-44 <br /> gnome-libs-devel-1.4.1.2.90-44 <br /> libaio-devel-0.3.102-1 <br /> libaio-0.3.102-1 <br /> make-3.80-5 <br /> openmotif21-2.1.30-11 <br /> xorg-x11-deprecated-libs-devel-6.8.1-23.EL <br /> xorg-x11-deprecated-libs-6.8.1-23.EL <br /> Which compat-oracle-rhel4 and compat-libcwait in the following Web site: <br /> http://oss.oracle.com/projects/compat-oracle/files/RedHat/ <br /> # Rpm-qa | grep &#39;compat&#39; <br /> Note: If the package was incomplete, most of Book 3 in the first system disk. Find yourself. A separate installation package. Dependence may be prompted, when prompted to install the failure is <o:p></o:p><br /><br /> Rpm - nodeps - force *. rpm <o:p></o:p><br /><br /> Second, extract the installation files Oracle9204 <br /> 1. Oracle 9iR2 ( <st1:chsdate w:st="on" year="1899" month="12" day="30" islunardate="False" isrocdate="False"> 9.2.0 </st1:chsdate> .4) <br /> (1) simplify the process (to oracle registry, the release of the installation file, use less disk space, faster) <br /> LINUX best when installed at a district / bak <o:p></o:p><br /><br /> gunzip ship_9204_linux_disk1.cpio.gz <o:p></o:p><br /><br /> cpio-idmv &lt;ship_9204_linux_disk1.cpio <o:p></o:p><br /><br /> gunzip ship_9204_linux_disk2.cpio.gz <o:p></o:p><br /><br /> cpio-idmv &lt;ship_9204_linux_disk2.cpio <br /> gunzip ship_9204_linux_disk3.cpio.gz <o:p></o:p><br /><br /> cpio-idmv &lt;ship_9204_linux_disk1.cpio <br /> (2) unpacking and decompression process, the automatic creation of three documents containing the installation directory: <br /> Disk1 <br /> Disk2 <br /> Disk3 <br /> Can be installed after the Oracle9iR2. <br /> Third, create a database of the preparations for the installation; <br /> 1, create a user / group; <br /> # groupadd dba <br /> # groupadd oinstall <br /> # useradd oracle-g oinstall-G dba <br /> # passwd oracle <br /> 2, the establishment of oracle installation folder; <br /> # Mkdir-p / u01/app/oracle/product / <st1:chsdate w:st="on" year="1899" month="12" day="30" islunardate="False" isrocdate="False"> 9.2.0 </st1:chsdate> .4 <br /> # Mkdir / u01/cwdata <br /> # Chmod 777 / u01/cwdata <br /> # Chown oracle.dba / u01/cwdata <br /> # Chown oracle.dba / orasetup <br /> # Chmod 777 / orasetup <br /> # Chown-R oracle.dba / u01/app/oracle/product/9.2.0.4 <br /> # Chmod-R 777 / u01/app/oracle/product/9.2.0.4 <br /> 2, configure the environment variable; <br /> Login to root user, root user&#39;s environment set up to open. Bash_profile file, add this: <br /> export ORACLE_BASE = / u01/app/oracle <br /> export ORACLE_HOME = / u01/app/oracle/product/9.2.0.4 <br /> export PATH = $ PATH: $ ORACLE_HOME / bin: $ ORACLE_HOME / Apache / Apache / bin <br /> export ORACLE_OWNER = oracle<br /> export ORACLE_SID = oradb <br /> The use of Oracle User Login: <br /> # su - oracle <br /> $ vi. bash_profile <br /> Following is a profile of content (based on the actual situation of their own) <br /> #. Bash_profile <br /><br /> # Get the aliases and functions <br /> if [-f ~ /. bashrc]; then <br /> . ~ /. Bashrc <br /> fi <br /><br /> # User specific environment and startup programs <br /><br /> PATH = $ PATH: $ HOME / bin <br /> # ORACLE_BASE can navigate to the disk array on / data <br /> export ORACLE_BASE = / u01/app/oracle <br /> export ORACLE_HOME = / u01/app/oracle/product/9.2.0.4 <br /> export PATH = $ PATH: $ ORACLE_HOME / bin: $ ORACLE_HOME / Apache / Apache / bin <br /> export ORACLE_OWNER = oracle <br /> export ORACLE_SID = oradb <br /> export ORACLE_TERM = xterm <br /> export LD_ASSUME_KERNEL = 2.4.19 <br /> export THREADS_FLAG = native <br /> export LD_LIBRARY_PATH = $ LD_LIBRARY_PATH: $ ORACLE_HOME / lib <br /> export NLS_LANG = &quot;American_america.zhs16gbk&quot; <br /> # Export NLS_LANG = &quot;SIMPLIFIED CHINESE_CHINA.ZHS16GBK&quot; <br /> export ORA_NLS33 = $ ORACLE_HOME / ocommon / nls / admin / data <br /> export DISPLAY =: 0 <br /> export LANG = en_US <br /> export GDM_LANG = en_US <br /> export LC = en_US <br /> export PATH <br /> unset USERNAME <br /> 4, set the system parameters; <br /> # su - root to switch to root user <br /> a) modify # vi / etc / sysctl.conf, the following is the contents of configuration files (one red font for the added content): <br /> # Kernel sysctl configuration file for Red Hat Linux <br /> # <br /> # For binary values, 0 is disabled, 1 is enabled. See sysctl (and <br /> # Sysctl.conf (5) for more details. <br /><br /> # Controls IP packet forwarding <br /> net.ipv4.ip_forward = 0 <br /><br /> # Controls source route verification <br /> net.ipv4.conf.default.rp_filter = 1 <br /><br /> # Controls the System Request debugging functionality of the kernel <br /> kernel.sysrq = 0 <br /><br /> # Controls whether core dumps will append the PID to the core filename. <br /> # Useful for debugging multi-threaded applications. <br /> kernel.core_uses_pid = 1 <br /> kernel.shmmax = 536870912 / 268435456 <br /> kernel.shmmni = 4096 <br /> kernel.shmall = 2097152 <br /> kernel.sem = 250 32000 100 128 <br /> fs.file-max = 65536 <br /> net.ipv4.ip_local_port_range = 1024 65000 <br /> Modified to run # sysctl-p command allows the kernel to change with immediate effect; <br /> Translator&#39;s Note: Under normal circumstances you can set the maximum shared memory for half of physical memory, if physical memory is <st1:chmetcnv w:st="on" tcsc="0" numbertype="1" negative="False" hasspace="False" sourcevalue="2" unitname="g"> 2G </st1:chmetcnv> , You can set the maximum shared memory for the 1,073,741,824, as indicated; such as the physical memory is <st1:chmetcnv w:st="on" tcsc="0" numbertype="1" negative="False" hasspace="False" sourcevalue="1" unitname="g"> 1G </st1:chmetcnv> , You can set the maximum shared memory of 512 * 1024 * 1024 = 536,870,912; and so on. ) <br /> Proposal to increase shmmax setting permanently. <br /> sem 4 parameters were SEMMSL (each user has a maximum number of semaphore); SEMMNS (the largest number of signals); SEMOPM (for each system call semopm operand); SEMMNI (system hard maximum number of volume sets). Shmmax maximum shared memory, the official document is the memory recommended 1 / 2, Shmmni minimum shared memory size of all memory 4096KB.Shmall <br /><br /> B) set the oracle of the documentation requirements: <br /> Edit the document: # vi / etc / security / limits.conf by adding the following statement: <br /> oracle soft nofile 65536 <br /> oracle hard nofile 65536 <br /> oracle soft nproc 16384 <br /> oracle hard nproc <st1:chmetcnv w:st="on" tcsc="0" numbertype="1" negative="False" hasspace="True" sourcevalue="16384" unitname="C"><st1:chmetcnv w:st="on" tcsc="0" numbertype="1" negative="False" hasspace="False" sourcevalue="16384" unitname="C"> 16384 </st1:chmetcnv><br /><br /> C </st1:chmetcnv> ) Gcc downgrade <br /> # su - root <br /> # mv / usr / bin / gcc / usr/bin/gcc34 <br /> # ln-s / usr/bin/gcc32 / usr / bin / gcc <br /> # mv / usr / bin / g + + / usr / bin / g + +34 <br /> # ln-s / usr / bin / g + +32 / usr / bin / g + + <br /> After the installation is complete remember to resume later in order to prevent future use of GCC <br /> 5, to install oracle patch <o:p></o:p><br /><br /> I suggest the first choice of installation SOFT installation, and then use the DBCA and NETCA and configuration database. As4 installed because the installation ORACLE9204 database at the same time when using DBCA, called JRE problem, you will find that library may have been fixed to stop 46 percent. I waited for more than two hours are not fixed point, then re-install it this way, then call the JRE that he is wrong, it should be a BUG. Therefore, we suggest that you first install the software, after the establishment of databases. <o:p></o:p><br /><br /> When you implement Oracle 9iR2 CD runInstaller appears when the error message: <br /> Error occurred during initialization of VM <br /> Unable to load native library: <br /> / tmp / OraInstall <st1:chsdate w:st="on" year="2003" month="10" day="25" islunardate="False" isrocdate="False"> 2003-10-25 </st1:chsdate> _03-14-57PM/jre/lib/i386 <br /> / libjava.so symbol _libc_wait, version GLIBC_2.0 not <br /> defined in file libc.so.6 with link time reference <br /> In order to solve the problem _libc_wait symbols,<br /> Download patch from http://oss.oracle.com/projects/compat-oracle/files/RedHat/ <br /> compat-libcwait-2.0-2.i386.rpm compat-oracle-rhel4-1.0-5.i386.rpm. In order to apply this patch, you can run: <br /> $ su - root <br /> # Cd / bak <br /> # ls compat *. rpm <br /> compat-libcwait-2.0-2.i386.rpm compat-oracle-rhel4-1.0-5.i386.rpm <br /> # Rpm-Uvh compat *. rpm <br /> Preparing ... ########################################### [100% ] <br /> 1at-libcwait-2.0-2.i386.rpm ##################################### [50 %] <br /> at-oracle-rhel4-1.0-5.i386.rpm #################################### [ 100%] <br /> Fourth, start the installation oracle9iR2 <br /> (A) to start the installation: <br /> 1. To oracle user sign-on system for Oracle installation: <br /> $ Cd Disk1 <br /> $. / RunInstaller After a while there will be the installation of Oracle interface <br /> 2. Step by step to install it on the list! <br /> The installation process in order to root user will be prompted to perform some procedures for landing <br /> 3, after the patch is installed: (I have not encountered the situation Pink) <br /> Switch to root: # su - root to install the first opatch. <br /> # cd / bak <o:p></o:p><br /><br /> # unzip p2617419_210_GENERIC.zip <br /> Archive: p2617419_210_GENERIC.zip <br /> creating: OPatch / <br /> creating: OPatch / docs / <br /> inflating: Opatch / docs / FAQ <br /> ...... <br /> inflating: README.txt <br /> # export PATH = $ PATH: / orasetup / OPatch: / sbin <br /> (Modified to include the PATH to extract from the sbin directory and Opatch) <br /> # Unzip p3238244_9204_LINUX.zip <br /> # Cd 3238244 <br /> # mkdir / var / tmp / .oracle <br /> # chown oracle: dba / var / tmp / .oracle <br /> # Opatch apply <br /><br /> If the HOME variable error prompt executable statement: <br /> # export ORACLE_BASE = / u01/app/oracle <br /> # export ORACLE_HOME = / u01/app/oracle/product / <st1:chsdate w:st="on" year="1899" month="12" day="30" islunardate="False" isrocdate="False"> 9.2.0 </st1:chsdate> .4 <br /> Prompt appears on the success of all installed successfully. <br /><br /> After the patch finished, but also relinked one. Mk document window to switch to the oracle user <br /> cd $ ORACLE_HOME / network / lib <br /> make-f ins_oemagent.mk install <br /> Agent will be able to start after the service. <br /><br /> Third: Because DBCA call ORACLE database is the JRE itself a mistake, therefore, I suggest that their up to install a JRE. <o:p></o:p><br /><br /> 1: Download j2sdk-1_4_2_04-linux-i586-rpm.bin to the server <o:p></o:p><br /><br /> 2: chmod + x j2sdk-1_4_2_04-linux-i586-rpm.bin <o:p></o:p><br /><br /> 3: sh j2sdk-1_4_2_04-linux-i586-rpm.bin <o:p></o:p><br /><br /> 4: rpm-ivh j2sdk-1_4_2_04-linux-i586.rpm <o:p></o:p><br /><br /> 5: <font face="Times New Roman"> </font> mv $ ORACLE_HOME / JRE $ ORACLE_HOME / JRE_ORIG <o:p></o:p><br /><br /> ln-s / usr / java / jdk <st1:chsdate w:st="on" year="1899" month="12" day="30" islunardate="False" isrocdate="False"> 1.4.2 </st1:chsdate> / jre $ ORACLE_HOME / JRE <o:p></o:p><br /><br /> su - root <o:p></o:p><br /><br /> ln-s / usr / java / jdk <st1:chsdate w:st="on" year="1899" month="12" day="30" islunardate="False" isrocdate="False"> 1.4.2 </st1:chsdate> / jre / bin / java / usr/java/jdk1.4.2/jre/bin/jre <o:p></o:p><br /><br /> ln-s / usr / java / jdk <st1:chsdate w:st="on" year="1899" month="12" day="30" islunardate="False" isrocdate="False"> 1.4.2 </st1:chsdate> / jre/bin/i386/native_threads/java / usr/java/jdk1.4.2/jre/bin/i386/native_threads/jre <o:p></o:p><br /><br /> 6: su - oracle <o:p></o:p><br /><br /> Export JRE_LOCATION <font face="Times New Roman">= / usr / java / jdk</font> <st1:chsdate w:st="on" year="1899" month="12" day="30" islunardate="False" isrocdate="False"> <font face="Times New Roman">1.4.2</font> </st1:chsdate><o:p></o:p><br /><br /> <font face="Times New Roman">7:</font> dbca database to establish the beginning of the smooth. . . . . . . . . . . . . All the best of luck <o:p></o:p><br /><br /> <font face="Times New Roman">8: netca</font> monitor configuration database <o:p></o:p><br /><br /> Four: Configure it self-starting <o:p></o:p><br /><br /> 1, after the completion of the database to create, modify / etc / oratab, the final boss of the N line into Y, and then restart the database dbstart implementation of the database may not be able to start, the report Can&#39;t find init file ... the error, the need for an initial copy of documents: <br /> cp / u01/app/oracle/admin/oradb/pfile/init.ora .* / u01/app/oracle/product / <st1:chsdate w:st="on" year="1899" month="12" day="30" islunardate="False" isrocdate="False"> 9.2.0 </st1:chsdate> / dbs / initoradb.ora <br /> Dbstart rerun it. <br /> In order to facilitate the management, you can write a startup script ora9i: <br /> Entered root in the preparation of the following script: <br /><br /> #! / bin / bash <br /> # start and stop the oracle instance <br /> # Chkconfig-level 5 - add ora9i <br /> # chkconfig: 345 91 19 <br /> # Description: starts the oracle listener and instance <br /><br /> export ORACLE_HOME = &quot;/ u01/app/oracle/product/9.2.0.4&quot; <br /> export PATH = $ ORACLE_HOME / bin: $ ORACLE_HOME / Apache / Apache / bin: $ PATH <br /> export ORACLE_OWNER = &quot;oracle&quot; <br /> export ORACLE_SID = oradb <br /><br /> if [!-f $ ORACLE_HOME / bin / dbstart-o!-d $ ORACLE_HOME] <br /> then <br /> echo &quot;oracle startup: cannot start&quot; <br /> exit 1 <br /> fi <br /><br /> case &quot;$ 1&quot; in<br /> start) <br /> # startup the listener and instance <br /> echo-n &quot;oracle startup:&quot; <br /> su - $ ORACLE_OWNER-c &quot;$ ORACLE_HOME / bin / lsnrctl start&quot; <br /> su - $ ORACLE_OWNER-c $ ORACLE_HOME / bin / dbstart <br /> touch / var / lock / subsys / oracle <br /> echo &quot;finished&quot; <br /> ;; <br /> stop) <br /> # Stop listener, apache and database <br /> echo-n &quot;oracle shutdown:&quot; <br /> su - $ ORACLE_OWNER-c &quot;$ ORACLE_HOME / bin / lsnrctl stop&quot; <br /> su - $ ORACLE_OWNER-c $ ORACLE_HOME / bin / dbshut <br /> rm-f / var / lock / subsys / oracle <br /> echo &quot;finished&quot; <br /> ;; <br /> reload | restart) <br /> $ 0 stop <br /> $ 0 start <br /> ;; <br /> *) <br /> echo &quot;Usage: ora9i [start | stop | reload | restart]&quot; <br /> exit 1 <br /><br /> esac <br /> exit 0 <br /><br /> Save as ora9i after, and then use chmod a + x ora9, may in the future to root Run / etc/rc.d/init.d/ora9i start | stop to manage the oracle of the start-up and stopped. If you want this script into the system so that it can be switched, then to run the following command: chkconfig - level 3 (or 5) - add ora9i <br /> Or, to use the root user to perform the following command: <br /> # cp / orasetup/ora9i / etc / rc.d / init.d / <br /> # chmod a + x / etc / rc.d / init.d / ora9 <br /> # cd / etc/rc.d/rc5.d <br /> # ln-s / etc/rc.d/init.d/ora9i S99ora9i <br /> # cd / etc/rc.d/rc0.d <br /> # ln-s / etc/rc.d/init.d/ora9i K99ora9i <br /> Can also be self-starting oracle9i! <br /> Or in the / etc / rc.d / rc.local add the following: <br /> su - oracle-c &quot;/ u01/app/oracle/product/9.2.0.4/bin/lsnrctl start&quot; <br /> su - oracle-c &quot;/ u01/app/oracle/product/9.2.0.4/bin/dbstart start&quot; <br /><br /> 2 <br /> Re-installed on the database to delete the questions: <br /> The ORACLE installation directory and delete the / etc / ora *.* to delete on the list <br /> # rm-f / etc / ora *.* <o:p></o:p><br /><br /><o:p></o:p><br /><br /><o:p></o:p><br /><br /><o:p></o:p><br /><br /><o:p></o:p><br /><br /><o:p></o:p><br /><br /><o:p></o:p><br /><br /><o:p></o:p><br /><br /><o:p></o:p><br /><br /><o:p></o:p><br /><br /><o:p></o:p><br /><br /><o:p><font face="Times New Roman"> </font></o:p>				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/sga-extended-the-principle-of-32bit-oracle/" title="SGA extended the principle of 32bit oracle">SGA extended the principle of 32bit oracle</a> 2009-03-31 09:48:01</li>
					<li><a href="http://www.kods.net/diagnosis-and-principles-of-order/" title="Diagnosis and principles of order">Diagnosis and principles of order</a> 2009-02-25 20:27:28</li>
					<li><a href="http://www.kods.net/oracle-10g-dataguard-configuration-step-by-step/" title="ORACLE 10G dataguard configuration Step by Step">ORACLE 10G dataguard configuration Step by Step</a> 2009-02-16 01:13:55</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/linux-as4-is-installed-under-the-oracle9/</wfw:commentRss>
	</item>
		<item>
		<title>Redhat as4 under the startup script since oracle10g</title>
		<link>http://www.kods.net/redhat-as4-under-the-startup-script-since-oracle10g/</link>
		<comments>http://www.kods.net/redhat-as4-under-the-startup-script-since-oracle10g/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 04:02:17+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle]]></category>
<category><![CDATA[oracle 10g]]></category>
<category><![CDATA[oracle home]]></category>
<category><![CDATA[sid]]></category>
<category><![CDATA[oracle trace]]></category>
<category><![CDATA[oracle installation]]></category>
<category><![CDATA[instances]]></category>
<category><![CDATA[resumption]]></category>
<category><![CDATA[little bit]]></category>
<category><![CDATA[realization]]></category>
<category><![CDATA[y quot]]></category>
<category><![CDATA[instance oracle]]></category>
<category><![CDATA[oracle script]]></category>
<category><![CDATA[necessary packages]]></category>
<category><![CDATA[boot procedure]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[startup script]]></category>
<category><![CDATA[system boot]]></category>
<category><![CDATA[step down]]></category>
<category><![CDATA[personal experience]]></category>
		<guid isPermaLink="true">http://www.kods.net/redhat-as4-under-the-startup-script-since-oracle10g/</guid>
		<description><![CDATA[Private [http://www.hxre.org/post/42.html] On the oracle installation in linux system, how to restart in the case of systems for service start up automatically, there are many online tutorials and ready-made script, here is a little personal experien ...]]></description>
		<content:encoded><![CDATA[Private [http://www.hxre.org/post/42.html] <br /> On the oracle installation in linux system, how to restart in the case of systems for service start up automatically, there are many online tutorials and ready-made script, here is a little personal experience in the work. <br /> Redhat as4 to oracle 10g and as an example. Stand-alone installation process in accordance with the oracle at the official step by step down the document, as long as the parameters set up, installed the necessary packages are generally not a problem. System installed after the resumption, oracle restart the service, on-line recommendations, many people write their own script (script is also very simple in fact), we speak of here is the realization of oracle script itself, of course, the inevitable eventually, to write a little bit: ) <br /><br /> 1, configuration dbstart and dbshut <br /> In the $ ORACLE_HOME / bin, there are two dbstart and dbshut script, more dbstart look can see: <br /> <font color="#800000"><br /> # <br /> # $ Id: dbstart.sh.pp 11-may-2005.18: 18:07</font> vikrkuma <font color="#800000">Exp $ <br /> # Copyright (c) 1991, 2005, Oracle. All rights reserved. <br /> # <br /><br /> ################################### <br /> # <br /> # Usage:</font> dbstart <font color="#800000"><br /> # <br /> # This script is used to start ORACLE from / etc / rc (. Local). <br /> # It should ONLY be executed as part of the system boot procedure. <br /> # <br /> # This script will start all databases listed in the oratab file <br /> # Whose third field is a &quot;Y&quot;. If the third field is set to &quot;Y&quot; and <br /> # There is no</font> ORACLE_SID <font color="#800000">for an entry (the first field is a *), <br /> # Then this script will ignore that entry. <br /> # <br /> # This script requires that ASM ORACLE_SID&#39;s start with a +, and <br /> # That non-ASM instance ORACLE_SID&#39;s do not start with a +. <br /> # <br /> # If ASM instances are to be started with this script, it cannot <br /> # Be used inside an rc *. d directory, and should be invoked from <br /> # Rc.local only. Otherwise, the CSS service may not be available <br /> # Yet, and this script will block init from completing the boot <br /> # Cycle. <br /> # <br /> # Note: <br /> # Use</font> ORACLE_TRACE <font color="#800000">= T for tracing this script. <br /> # <br /> # The progress log for each instance bringup plus Error and Warning message [s] <br /> # Are logged in file $ ORACLE_HOME / startup.log. The error messages related to <br /> # Instance bringup are also logged to syslog (system log module). <br /> # The Listener log is located at $ ORACLE_HOME_LISTNER / listener.log <br /> ...... <br /></font> <br /> We can see that this script is used to start the oracle services, including the listener, instance, asm instances, and can be on / etc / rc (. Local)., The same closed dbshut services also play a role. <br /> Configure the system to make the script work: <br /> 1) to root to edit / etc / oratab, similar <font color="#800000">orcl: / u01/product/10.2.0/db_1: N</font> in this format, which orcl is your ORACLE_SID, <font color="#800000">/ u01/product/10.2.0/db_1</font> is ORACLE_HOME, N need to be changed here Y, that is <font color="#ff6600">orcl: / u01/product/10.2.0/db_1: Y</font> do. <br /> 2) to oracle editing $ ORACLE_HOME / bin / dbstart, the first of which 78 firms <font color="#800000">found:</font> ORACLE_HOME_LISTNER <font color="#800000">=</font> changed to your own path, or you can change <font color="#800000">ORACLE_HOME_LISTNER = $ ORACLE_HOME</font> <br /> Save the script to run the oracle user dbshut and see if it can dbstart closed, restart the database. If not, the parameters are generally set up, according to the location of error to find the corresponding changes. <br /><br /> 2, the dbstart and start dbshut added services redhat step through the configuration, you can directly start data dbstart command listener, instance, asm instances, but no start oracle10g of EM, ORACLE database using web pages rather convenient, but also a feature of 10g, so it should be to start from the service. <br /> <font color="#800000">$ ORACLE_HOME / bin /</font> emctl <font color="#800000">start dbconsole</font> <br /> Therefore, we can use rc.local or redhat services required to achieve start-up. , Respectively, talk about the following: <br /><br /> 1), the use of rc.local. Dbstart added directly to the rc.local, the realization of the boot automatically activated. It should be noted that the oracle must start the script. <br /> With root edit / etc / rc.local, add the following line: <br /> <font color="#800000">su - oracle-c &quot;/ u01/product/10.2.0/db_1/bin/dbstart&quot; <br /> su - oracle-c &quot;/ u01/product/10.2.0/db_1/bin/emctl start dbconsole&quot;</font> <br /> Here / u01/product/10.2.0/db_1 need to replace the actual ORACLE_HOME <br /> After save and exit, reboot the server to test, we can see that when the system boot after the oracle monitoring, examples and em are already up <br /> 2), if we do not have rc.local, can also be added to the service of redhat. In / etc / rc.d / init.d to add the following script file, named as oracle: <br /> <font color="#800000">#! / bin / sh <br /> # chkconfig: 2345 99 01 <br /> # description: ORACLE 10g Server <br /><br /> ORACLE_HOME = / u01/product/10.2.0/db_1 <br /><br /> if [!-f $ ORACLE_HOME / bin / dbstart] <br /> then <br /> echo &quot;ORACLE cannot start&quot; <br /> exit <br /> fi <br /><br /> case &quot;$ 1&quot; in <br /> &#39;start&#39;)</font><br /> echo &quot;Starting Oracle Database ...&quot; <br /> su - oracle-c &quot;$ ORACLE_HOME / bin / dbstart&quot; <br /> su - oracle-c &quot;$ ORACLE_HOME / bin / emctl start dbconsole&quot; <br /> ;; <br /> &#39;stop&#39;) <br /> echo &quot;Stoping Oracle Database&quot; <br /> su - oracle-c &quot;$ ORACLE_HOME / bin / emctl stop dbconsole&quot; <br /> su - oracle-c &quot;$ ORACLE_HOME / bin / dbshut&quot; <br /> ;; <br /> esac <br /><br /> Attention to two lines of notes, on-line script because a lot of these lines can not be less since the launch of the service: <br /> # chkconfig: 2345 99 01 <br /> # description: ORACLE 10g Server <br /> Which chkconfig: 2345 99 01 will run the script refers to 2,3,4,5-class service to start oracle 10g to start priority 99 to close for the 01 priority. <br /><br /> And then to root permissions: <br /> <font color="#800000"># Cd / etc/rc2.d <br /> # Ln-s / etc / rc.d / init.d / oracle S99oracle <br /> # Chkconfig - list oracle <br /> # Chkconfig - level 2345 on</font> <br /> Reboot the system, you can see the process start Starting oracle, because we set the priority to 99, is generally the last to start. [OK] after it. In order to start emctl, may be a bit slow, wait a little longer time. <br /> Then you can start to root or oracle start the implementation of oracle stop to start or stop services. <br /><br /> -------------------------------------------------- --------------------------------------------- <br /> 1, amend the Oracle system, configuration file / etc / oratab <br /> / etc / oratab format: SID: ORACLE_HOME: AUTO <br /> AUTO field is set to the Y (upper case), the only way, oracle and dbstart own dbshut be able to play a role. I am for: <br /> ora9i: / home/oracle/ora/products/9.2.0: Y <br /> 2, preparation of service script: <br /> As follows <br /> #! / bin / bash <br /> # <br /> ################# FUNCTION ############# <br /> # <br /> # AutoStart Oracle and listener <br /> # AutoStop Oracle and listener <br /> # <br /> ##################################### <br /> # <br /> # Created by ZhouYS 2003-11-26 <br /> # <br /> case &quot;$ 1&quot; in <br /> start) <br /> echo &quot;Starting Oracle Databases ...&quot; <br /> echo &quot;------------------------------------------------ - &quot;&gt;&gt; / var / log / oracle <br /> date + &quot;% T% a% D: Starting Oracle Databasee as part of system up.&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;------------------------------------------------ - &quot;&gt;&gt; / var / log / oracle <br /> su - oracle-c &quot;dbstart&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;Done.&quot; <br /> echo &quot;Starting Oracle Listeners ...&quot; <br /> echo &quot;------------------------------------------------ - &quot;&gt;&gt; / var / log / oracle <br /> date + &quot;% T% a% D: Starting Oracle Listeners as part of system up.&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;------------------------------------------------ - &quot;&gt;&gt; / var / log / oracle <br /> su - oracle-c &quot;lsnrctl start&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;Done.&quot; <br /> echo &quot;&quot; <br /> echo &quot;------------------------------------------------ - &quot;&gt;&gt; / var / log / oracle <br /> date + &quot;% T% a% D: Finished.&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;------------------------------------------------ - &quot;&gt;&gt; / var / log / oracle <br /> touch / var / lock / subsys / oracle <br /><br /> ;; <br /> stop) <br /> echo &quot;Stoping Oracle Listeners ...&quot; <br /> echo &quot;------------------------------------------------ - &quot;&gt;&gt; / var / log / oracle <br /> date + &quot;% T% a% D: Stoping Oracle Listener as part of system down.&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;------------------------------------------------ - &quot;&gt;&gt; / var / log / oracle <br /> su - oracle-c &quot;lsnrctl stop&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;Done.&quot; <br /> rm-f / var / lock / subsys / oracle <br /> echo &quot;Stoping Oracle Databases ...&quot; <br /> echo &quot;------------------------------------------------ - &quot;&gt;&gt; / var / log / oracle <br /> date + &quot;% T% a% D: Stoping Oracle Databases as part of system down.&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;------------------------------------------------ - &quot;&gt;&gt; / var / log / oracle <br /> su - oracle-c &quot;dbshut&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;Done.&quot; <br /> echo &quot;&quot; <br /> echo &quot;------------------------------------------------ - &quot;&gt;&gt; / var / log / oracle <br /> date + &quot;% T% a% D: Finished.&quot;&gt;&gt; / var / log / oracle <br /> echo &quot;------------------------------------------------ - &quot;&gt;&gt; / var / log / oracle <br /><br /> ;; <br /> restart) <br /> $ 0 stop <br /> $ 0 start <br /><br /> ;; <br /> *) <br /> echo &quot;Usage: oracle (start | stop | restart)&quot; <br /> exit 1 <br /> esac <br /><br /> The script is named oracle, stored in / etc / rc.d / init.d to change file attributes: chmod 755 oracle <br /><br /> Note: in windows to edit the file under the DOS format have resulted in character can not be under linux the normal operation of the proposed use gedit or vi editor <br /><br /> 3, the establishment of service connection: <br /> System startup to start the database, we need the following link: <br /> -------------------------------------------------- ------------------------------ <br /> $ Ln-s .. / init.d / oracle / etc/rc.d/rc2.d/S99oracle <br /> $ Ln-s .. / init.d / oracle / etc/rc.d/rc3.d/S99oracle<br /> $ Ln-s .. / init.d / oracle / etc/rc.d/rc5.d/S99oracle # rc4.d unused <br /><br /> -------------------------------------------------- ------------------------------ <br /><br /> To stop the database is restarted, we need the following link: <br /><br /> -------------------------------------------------- ------------------------------ <br /><br /> $ Ln-s .. / init.d / oracle / etc/rc.d/rc0.d/K01oracle # stop <br /> $ Ln-s .. / init.d / oracle / etc/rc.d/rc6.d/K01oracle # restart <br /><br /> -------------------------------------------------- ------------------------------ <br /><br /> ****** Is the online copy of the above, the following is my method ****** <br /><br /> -------------------------------------------------- ------------------------------ <br /><br /> The simplest way to Ha ha <br /><br /> First of all, the oracle / product / .. / bin script under dbstart get, if the oracle can run on dbstart if, in the / etc / rc.local add the following: <br /><br /> su - oracle-c &quot;/ home/oracle/oracle/product/10.2.0/db_1/bin/dbstart&quot; <br /> su - oracle-c &quot;/ home/oracle/oracle/product/10.2.0/db_1/bin/emctl start dbconsole&quot; <br /> Can.				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/sga-extended-the-principle-of-32bit-oracle/" title="SGA extended the principle of 32bit oracle">SGA extended the principle of 32bit oracle</a> 2009-03-31 09:48:01</li>
					<li><a href="http://www.kods.net/diagnosis-and-principles-of-order/" title="Diagnosis and principles of order">Diagnosis and principles of order</a> 2009-02-25 20:27:28</li>
					<li><a href="http://www.kods.net/oracle-10g-dataguard-configuration-step-by-step/" title="ORACLE 10G dataguard configuration Step by Step">ORACLE 10G dataguard configuration Step by Step</a> 2009-02-16 01:13:55</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/redhat-as4-under-the-startup-script-since-oracle10g/</wfw:commentRss>
	</item>
		<item>
		<title>Oracle Rac (Redhat as4 u2) package</title>
		<link>http://www.kods.net/oracle-rac-redhat-as4-u2-package/</link>
		<comments>http://www.kods.net/oracle-rac-redhat-as4-u2-package/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 00:48:15+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[oracle]]></category>
<category><![CDATA[redhat]]></category>
<category><![CDATA[oracle rac]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[software requirements]]></category>
<category><![CDATA[rpm]]></category>
<category><![CDATA[kernel version]]></category>
<category><![CDATA[size 12kb]]></category>
<category><![CDATA[u2]]></category>
		<guid isPermaLink="true">http://www.kods.net/oracle-rac-redhat-as4-u2-package/</guid>
		<description><![CDATA[Redhat as4 update 2, kernel version 2.6.9-22.ELsmp RAC Software requirements: RPM Download File: oracleasmlib-2.0.2-1.i386.rpm Size: 12KB Download: Download RPM Download File: oracleasm-2.6.9-22.ELsmp-2.0.3-1.i686.rpm Size: 125KB Download: Download R ...]]></description>
		<content:encoded><![CDATA[Redhat as4 update 2, kernel version 2.6.9-22.ELsmp <br /><br /> RAC Software requirements: <br /><br /><table cellspacing="0" cellpadding="0" width="360" align="center" border="1"><tbody><tr><td align="middle" width="60"> <strong>RPM Download</strong> </td><td><table cellspacing="0" cellpadding="0" width="100%" border="0"><tbody><tr><td align="middle" width="40"> File: </td><td> oracleasmlib-2.0.2-1.i386.rpm </td></tr><tr><td align="middle" width="40"> Size: </td><td> 12KB </td></tr><tr><td align="middle" width="40"> Download: </td><td> Download </td></tr></tbody></table></td></tr></tbody></table><br /><br /><table cellspacing="0" cellpadding="0" width="360" align="center" border="1"><tbody><tr><td align="middle" width="60"> <strong>RPM Download</strong> </td><td><table cellspacing="0" cellpadding="0" width="100%" border="0"><tbody><tr><td align="middle" width="40"> File: </td><td> oracleasm-2.6.9-22.ELsmp-2.0.3-1.i686.rpm </td></tr><tr><td align="middle" width="40"> Size: </td><td> 125KB </td></tr><tr><td align="middle" width="40"> Download: </td><td> Download </td></tr></tbody></table></td></tr></tbody></table><br /><br /><table cellspacing="0" cellpadding="0" width="360" align="center" border="1"><tbody><tr><td align="middle" width="60"> <strong>RPM Download</strong> </td><td><table cellspacing="0" cellpadding="0" width="100%" border="0"><tbody><tr><td align="middle" width="40"> File: </td><td> oracleasm-support-2.0.3-1.i386.rpm </td></tr><tr><td align="middle" width="40"> Size: </td><td> 22KB </td></tr><tr><td align="middle" width="40"> Download: </td><td> Download </td></tr></tbody></table></td></tr></tbody></table>				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/sga-extended-the-principle-of-32bit-oracle/" title="SGA extended the principle of 32bit oracle">SGA extended the principle of 32bit oracle</a> 2009-03-31 09:48:01</li>
					<li><a href="http://www.kods.net/high-availability-oracle-flashback/" title="High Availability Oracle Flashback">High Availability Oracle Flashback</a> 2009-02-26 17:23:02</li>
					<li><a href="http://www.kods.net/an-example-of-the-use-of-tkprof/" title="An example of the use of TKPROF">An example of the use of TKPROF</a> 2009-02-26 01:38:19</li>
					<li><a href="http://www.kods.net/diagnosis-and-principles-of-order/" title="Diagnosis and principles of order">Diagnosis and principles of order</a> 2009-02-25 20:27:28</li>
					<li><a href="http://www.kods.net/oracle-10g-dataguard-configuration-step-by-step/" title="ORACLE 10G dataguard configuration Step by Step">ORACLE 10G dataguard configuration Step by Step</a> 2009-02-16 01:13:55</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/oracle-rac-redhat-as4-u2-package/</wfw:commentRss>
	</item>
		<item>
		<title>Common Linux installation error under the Summary oracle</title>
		<link>http://www.kods.net/common-linux-installation-error-under-the-summary-oracle/</link>
		<comments>http://www.kods.net/common-linux-installation-error-under-the-summary-oracle/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 05:49:29+0000</pubDate>
		<dc:creator>kods.net</dc:creator>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[community forums]]></category>
<category><![CDATA[previous version]]></category>
<category><![CDATA[java lang]]></category>
<category><![CDATA[as4]]></category>
<category><![CDATA[oracle problem]]></category>
<category><![CDATA[as5]]></category>
<category><![CDATA[system error]]></category>
<category><![CDATA[rpm]]></category>
<category><![CDATA[unsatisfiedlinkerror]]></category>
<category><![CDATA[ln s]]></category>
<category><![CDATA[error while loading shared libraries]]></category>
<category><![CDATA[shared object]]></category>
<category><![CDATA[installation error]]></category>
<category><![CDATA[x11]]></category>
<category><![CDATA[linux installation]]></category>
<category><![CDATA[dynamic link library]]></category>
<category><![CDATA[exception java]]></category>
<category><![CDATA[case case]]></category>
<category><![CDATA[system cd]]></category>
<category><![CDATA[system tray]]></category>
		<guid isPermaLink="true">http://www.kods.net/common-linux-installation-error-under-the-summary-oracle/</guid>
		<description><![CDATA[Problem Summary: Linux install error under the Summary oracle common source: www.ixdba.net of: IXDBA.NET official This problem is too few classics, and helpful to everyone. Error 1: / Tmp/OraInstall2007-12-30_02-16-11PM/jre/1.4.2/lib/i386/libawt.so:  ...]]></description>
		<content:encoded><![CDATA[Problem Summary: Linux install error under the Summary oracle common source: www.ixdba.net of: IXDBA.NET official <br /><br /> This problem is too few classics, and helpful to everyone. <br /><br /> Error 1: <br /><br /> / Tmp/OraInstall2007-12-30_02-16-11PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred .. <br /><br /> The reasons are: lack of support printed graphics dynamic link library libXp.so.6 <br /><br /> This error is due to the lack of system installation package, the previous version in RHEL5, you can install the xorg-x11-deprecated-libs package can be, this installation package can be the third CD in the system tray to find (for redhat as4.2 ago, redhat as4. 4 is the fourth CD-ROM) <br /><br /> IXDBA.NET Community Forums <br /><br /> I downloaded the file as follows: <br /><br /> xorg-x11-deprecated-libs-6.8.2-31.i386.rpm <br /><br /> Error 2: <br /><br /> Exception: java.lang.UnsatisfiedLinkError: / usr/java/j2sdk1.4.2_06/jre/lib/i386/libawt.so: libXt.so.6: cannot open shared object file: No such file or directory <br /> This error is also due to the lack of the system caused by the installation package, just install the XFree86-libs package can be, this installation package can be found in the system CD. <br /><br /> If the above two errors in the redhat as5 version, resolved as follows: <br /><br /> In RHEL5 the above package is libXp replaced, so the rpm-ivh libXp-1.0.0-8.i386.rpm after the package marked with the problem can be solved. <br /><br /> Error 3: <br /><br /> error while loading shared libraries: libstdc + +-libc6.1-1.so.2 <br /><br /> Only do the following ln-s libstdc + +-libc6.2-2.so.3 libstdc + +-libc6.1-1.so.2 <br /><br /> Reference Case <br /><br /> Case 1: <br /><br /> Tested in the RHEL5 install oracle10g, that before the turn of the 11g, this would be more successful, the result is still two problems. <br /><br /> First of all, in the implementation of the runInstaller, the system error: <br /><br /> You do not have sufficient permissions to access the inventory &#39;/ oracle11g/oraInventory&#39;. Installation cannot continue. Make sure that you have read / write permissions to the inventory directory and restart the installer.: Permission denied <br /><br /> Is used here to create a new way for users 10g 10g, 11g coexist, in fact, when you start the installer, oracle will look for / etc / oraInst.loc and oratab these two files (hp is / var / opt / oracle ) <br /><br /> Which is defined in oraInst.loc inventory_loc location and inst_group, as had before the installation of a 11g, which is the definition of user settings for 11g, so the only error. Solution is the implementation of runInstaller-invPtrLoc / oracle10g/oraInst.loc command can be passed around, oracle will create a new loc file. <br /><br /> After the previous step successfully, followed by reporting the following error: <br /><br /> Exception java.lang.UnsatisfiedLinkError: / tmp/OraInstall2007-08-30_02-16-11PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred .. <br /> java.lang.UnsatisfiedLinkError: / tmp/OraInstall2007-08-30_02-16-11PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory <br /><br /> In RHEL5 before this error is because of lack of XFree86-libs or xorg-x11-deprecated-libs package one of the two (different versions of different packages), and in RHEL5 in front of the package is libXp replaced, so the rpm-ivh libXp -1.0.0-8.i386.rpm after the package marked solve the problem. After all the best. <br /><br /> Case 2: <br /><br /> Reference http://moto.debian.org.tw/viewtopic.php?t=8055&amp;sid=eb2524337903c5af7ce1e839e0a35b68 <br /> Preparation for the installation of pre-installed at the beginning of the following errors: <br /><br /> For error while loading shared libraries: libstdc + +-libc6.1-1.so.2 <br /> My solution is to <br /> ln-s libstdc + +-libc6.2-2.so.3 libstdc + +-libc6.1-1.so.2 <br /> For <br /> Exception: java.lang.UnsatisfiedLinkError: / usr/java/j2sdk1.4.2_06/jre/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory <br /> Solution is <br /> apt-get install libXp.so.6 <br /> apt-get install libXt.so.6 <br /> apt-get install libxtst6 <br /><br /> Case 3: <br /><br /> In RH Linux7.3 JasperReport as the reporting engine to use when encountered the same problem: <br /> Exception: java.lang.UnsatisfiedLinkError: / usr/java/j2sdk1.4.2_06/jre/lib/i386/libawt.so: libXt.so.6: cannot open shared object file: No such file or directory <br /><br /> In reply to the prompt you before, after one morning google, finally able to solve this problem because: a lack of support for printing graphics dynamic link library libXp.so.6 (perhaps related to other libraries) <br /> Solution: Download and install the XFree86-libs-4.2.0-8.i386.rpm, / usr/X11R6/lib need libXp.so.6.2 will appear under the <br /><br /> Attached to XFree86-libs-4.2.0-8.i386.rpm&#39;s a download address: <br /> ftp://ftp.nluug.nl/vol/1/schoollan/os/linux/RPMS/XFree86-libs-4.2.0-8.i386.rpm				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.kods.net/the-basis-of-oracle-problem-segment-extent-block/" title="the basis of oracle problem (segment, extent, block)">the basis of oracle problem (segment, extent, block)</a> 2009-06-19 14:00:16</li>
					<li><a href="http://www.kods.net/redhat-as4-under-the-startup-script-since-oracle10g/" title="Redhat as4 under the startup script since oracle10g">Redhat as4 under the startup script since oracle10g</a> 2009-06-18 04:02:17</li>
					<li><a href="http://www.kods.net/apex3-2-steps-to-install-oracle10/" title="apex3.2 steps to install oracle10">apex3.2 steps to install oracle10</a> 2009-04-19 10:33:11</li>
					<li><a href="http://www.kods.net/oracle-installation-difficulties/" title="Oracle installation difficulties">Oracle installation difficulties</a> 2009-04-19 04:08:56</li>
					<li><a href="http://www.kods.net/setting-to-discuss-filing-oracle10g/" title="setting to discuss filing oracle10g">setting to discuss filing oracle10g</a> 2009-04-02 05:19:08</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.kods.net/common-linux-installation-error-under-the-summary-oracle/</wfw:commentRss>
	</item>
	</channel>
</rss>
