标签:style blog http color java 使用 os io
make, glibc, libaio compat-libstdc++, compat-gcc-34, compat-gcc-34-c++, gcc, libXp openmotif, compat-db 查询glib有没有安装 # rpm -qa | grep glib
# mount /dev/cdrom /media
# cd /media/Server
# rpm -ivh compat-gcc-34-* --nodeps # rpm -ivh openmotif-* --nodeps # rpm -ivh libXp-* --nodeps # rpm -ivh compat-db-* --nodeps
增加下面的内容到文件 /etc/sysctl.conf 中: kernel.shmall = 2097152 --系统可以使用的内存页的最大数量 kernel.shmmax = 2147483648 --单个共享内存段的最大大小,单位是字节 kernel.shmmni = 4096 --内存页的大小 # semaphores: semmsl, semmns, semopm, semmni kernel.sem = 250 32000 100 128 fs.file-max = 65536 net.ipv4.ip_local_port_range = 1024 65000 net.core.rmem_default=262144 net.core.rmem_max=262144 net.core.wmem_default=262144 net.core.wmem_max=262144
/sbin/sysctl -p
#use for oracle * soft nproc 2047 * hard nproc 16384 * soft nofile 1024 * hard nofile 65536
session required pam_limits.so
SELINUX=disabled
关闭SELIINUX
groupadd oinstall groupadd dba groupadd oper useradd -g oinstall -G dba oracle passwd oracle oinstall:属于此组的用户才能安装oracle dba:属于此组的用户才能进行sys这个用户的的操作系统验证 oper:属于此组的用户才能进行public这个用户的的操作系统验证
mkdir -p /u01/app/oracle chown -R oracle:oinstall /u01 chmod -R 775 /u01
以 oracle 身份登录,并通过在 .bash_profile 中添加以下行
增加下列内容:
export ORACLE_BASE=/u01/app/oracle export ORACLE_HOME=$ORACLE_BASE/10.2.0/db_1 export ORACLE_SID=orcl export PATH=$PATH:$ORACLE_HOME/bin
?# su - oracle
这里解释一下:su 加不加-的区别,加-了当前的用户环境由后面的用户决定。不加的话则有root这个用户的环境决定。
10201_database_linux32.zip : oracle_database_10.2.0.1.0版本。 p8202632_10205_LINUX.zip : 将oracle_database_10.2.01版本升级到10.2.0.5.0版本的补丁文件 p8350262_10205_Generic.zip : 这是em的补丁文件
# : unzip 10201_database_linux32.zip
# : cd database
【doc、 install、 response、 runInstaller、 stage、 welcome.html】
# : ./runInstaller
Exception in thread "main" java.lang.InternalError: Can‘t connect to X11 window server using ‘:0.0‘ as the value of the DISPLAY variable. at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method) at sun.awt.X11GraphicsEnvironment.<clinit>(Unknown Source) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Unknown Source) at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(Unknown Source) at java.awt.Window.init(Unknown Source) at java.awt.Window.<init>(Unknown Source) at java.awt.Frame.<init>(Unknown Source) at oracle.ewt.popup.PopupFrame.<init>(Unknown Source) at oracle.ewt.lwAWT.BufferedFrame.<init>(Unknown Source) at oracle.sysman.oio.oioc.OiocOneClickInstaller.<init>(OiocOneClickInstaller.java:378) at oracle.sysman.oio.oioc.OiocOneClickInstaller.main(OiocOneClickInstaller.java:2091) 解释一下:发生异常的原因是因为oracle用户没有执行图形化界面的权限
# xhost + access control disabled, clients can connect from any host
这里解释一下:xhost + 这个命令允许别的用户的启动程序将图形显示在当前的屏幕上。
$ : .runInstall
$ vi /etc/hosts 修改hosts的配置文件
删除最后一行的内容,在最后一行加上主机的IP地址和主机名,并将第三行IP地址上面你的主机名给删除,不能让两个IP地址都对应同一个主机名,也就是不能有两个oracle出现。配置好了如下。
# /u01/app/oracle/oraInventory/orainstRoot.sh Changing permissions of /u01/app/oracle/oraInventory to 770. Changing groupname of /u01/app/oracle/oraInventory to oinstall. The execution of the script is complete
# /u01/app/oracle/10.2.0/db_1/root.sh Running Oracle10 root.sh script... The following environment variables are set as: ORACLE_OWNER= oracle ORACLE_HOME= /u01/app/oracle/10.2.0/db_1 Enter the full pathname of the local bin directory: [/usr/local/bin]: The file "dbhome" already exists in /usr/local/bin. Overwrite it? (y/n) [n]: The file "oraenv" already exists in /usr/local/bin. Overwrite it? (y/n) [n]: The file "coraenv" already exists in /usr/local/bin. Overwrite it? (y/n) [n]: 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.sh script. Now product-specific root actions will be performed.
$ sqlplus / as sysdba le dSQL*Plus: Release 10.2.0.1.0 - Production on Tue Aug 12 21:40:20 2014ase]Copyright (c) 1982, 2005, Oracle. All rightsreserved. Connected to an idle instance. SQL> 显示如此证明Release 10.2.0.1.0安装成功。
全世界最详细的图形化VMware中linux环境下oracle安装(一)【weber出品必属精品】,布布扣,bubuko.com
全世界最详细的图形化VMware中linux环境下oracle安装(一)【weber出品必属精品】
标签:style blog http color java 使用 os io
原文地址:http://www.cnblogs.com/yaoweber/p/3916612.html