VMware下CentOS静默安装oracle12.2的方法
在VMware下安装Oracle 12.2的CentOS静默安装步骤如下:
1.准备工作:
- 在VMware上安装CentOS系统,并安装必要的软件包,包括make,gcc,gcc-c++,binutils,glibc,glibc-devel,libstdc++,libstdc++-devel,ksh,unixODBC,unixODBC-devel,libaio,libaio-devel,sysstat,compat-libstdc++-33,compat-libstdc++-33.i686。
- 下载Oracle 12.2的安装文件:linuxamd64_12201_database_1of2.zip和linuxamd64_12201_database_2of2.zip。
2.解压安装文件:
- 将下载的安装文件解压到/home/oracle/下,并将解压后的文件夹重命名为database,命令如下:
unzip linuxamd64_12201_database_1of2.zip unzip linuxamd64_12201_database_2of2.zip mv database_1of2 database
3.创建安装用户:
- 使用root用户登录CentOS,创建oracle用户和dba组,命令如下:
groupadd dba useradd -g dba oracle passwd oracle
4.修改系统参数:
- 修改/etc/security/limits.conf文件,添加如下内容:
oracle soft nofile 1024 oracle hard nofile 65536 oracle soft nproc 2047 oracle hard nproc 16384 oracle soft stack 10240 oracle hard stack 32768
5.创建安装目录:
- 使用oracle用户登录CentOS,创建安装目录/u01/app/oracle,并赋予权限,命令如下:
mkdir -p /u01/app/oracle chown -R oracle:dba /u01 chmod -R 775 /u01
6.静默安装:
- 使用oracle用户登录CentOS,进入/home/oracle/database目录,执行如下命令:
./runInstaller -silent -responseFile /home/oracle/database/response/db_install.rsp
7.检查安装结果:
- 检查/u01/app/oracle/product/12.2.0/dbhome_1/install/oraparam.ini文件,查看安装是否成功。
相关文章