[root@orcltestDownloads]# vim /etc/security/limits.conf
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
4,修改/etc/pam.d/login
[root@orcltestDownloads]# vim /etc/pam.d/login
session required/lib64/security/pam_limits.so
5,修改bash_profile文件
(1)修改profile:
[root@orcltest Downloads]# vim /etc/profile
# add by tim.man
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi
[root@azure_earth_dbm1_3_112 ~]# exportDISPLAY=10.254.3.112:1.0
[root@azure_earth_dbm1_3_112 ~]# xhost +
access control disabled, clients canconnect from any host
[root@azure_earth_dbm1_3_112 ~]#
[oracle@azure_earth_dbm1_3_111 database]$./runInstaller
"You are attempting to install 64-bitOracle on a 32-bit operating system. This is not supported and will not work."
[oracle@azure_earth_dbm1_3_111 database]$vim runInstaller
# 注释掉exit 126即可
if [ `$UNAME` = "Linux" ]; then
if [ -e $GETCONF ]; then
value=`$GETCONF LONG_BIT`
if [ $value != 64 ]; then
echo ""You are attempting to install 64-bit Oracle on a32-bit operating system. This is notsupported and will not work."";
#exit 126; #corresponding to the exit code of oui
fi
fi
fi
# 查找文件路径
[oracle@azure_earth_dbm1_3_111 database]$ find /data/ -name orainstRoot.sh
/data/oraInventory/orainstRoot.sh
[oracle@azure_earth_dbm1_3_111 database]$ find /data/ -name root.sh
/data/oracle/product/11.2.0/dbhome_1/inventory/Templates/root.sh
/data/oracle/product/11.2.0/dbhome_1/root.sh
[oracle@azure_earth_dbm1_3_111 database]$
# 开始执行脚本
[root@azure_earth_dbm1_3_111 soft]# sh /data/oraInventory/orainstRoot.sh
Changing permissions of /oracle/app/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.
Changing groupname of /oracle/app/oraInventory to oinstall.
The execution of the script is complete.
[root@azure_earth_dbm1_3_111 soft]#
[root@azure_earth_dbm1_3_111 soft]# sh /data/oracle/product/11.2.0/dbhome_1/root.sh
Performing root user operation for Oracle 11g
The following environment variables are set as:
ORACLE_OWNER= oracle
ORACLE_HOME= /oracle/app/oracle/product/11.2.0/dbhome_1
Enter the full pathname of the local bin directory: [/usr/local/bin]:
Copying dbhome to /usr/local/bin ...
Copying oraenv to /usr/local/bin ...
Copying coraenv to /usr/local/bin ...
Creating /etc/oratab file...
Entries will be added to the /etc/oratab file as needed by
Database Configuration Assistant when a database is created
Finished running generic part of root script.
Now product-specific root actions will be performed.
Finished product-specific root actions.
[root@azure_earth_dbm1_3_111 soft]#
# 修改spfile参数
SQL> alter system set log_archive_dest_1='location=/doea5/arch';
SQL> alter system set log_archive_format='arch_%t_%s_%r.log' scope=spfile;
SQL> alter system set db_recovery_file_dest_size=20G scope=spfile;
SQL> alter system set db_recovery_file_dest='/oracle/app/oracle/flash_recovery';
SQL> alter system set db_flashback_retention_target=10080 scope=spfile;
SQL> alter system set undo_retention=10800;
# 打开归档和闪回
SQL> shutdown immediate
SQL> startup mount
SQL> alter database archivelog ;
SQL> alter database flashback on;
SQL> alter database open;
OK,至此,oracle11g2.0.4顺利圆满安装完成了。 如果一直报“xhost: unable to open display”,而且没有其它办法解决,可以尝试下面的途径:
[root@pddbnew ~]# export DISPLAY=10.251.3.31:1.0
[root@pddbnew ~]# xhost +
xhost: unable to open display "10.251.3.31:1.0"
[root@pddbnew ~]#
[root@pddbnew ~]#
[root@pddbnew ~]# export DISPLAY=pddbnew:1.0
[root@pddbnew ~]# xhost +
xhost: unable to open display "pddbnew:1.0"
[root@pddbnew ~]#