这篇文章给大家分享的是有关oracle11g在linux7的静默安装脚本怎么写的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

1 把11.2.0.4的安装文件放到基础目录,一般我放在/u01下

2 把compat-libstdc++-33-3.2.3-72.el7.x86_64.rpm和elfutils-libelf-devel-0.168-8.el7.x86_64.rpm放到基础目录下

3 把2个脚本放到基础目录下,确认有默认的unzip命令

4 执行2个脚本

更新:

1 可以单独指定数据文件位置,也可以使用默认位置

2018-10-11更新:

1 修改swap空间增加后不能继续的bug

2 添加了unzip的安装

脚本分享连接:

链接:https://pan.baidu.com/s/13ebRwJ29zly9EMMazcs_nQ 密码:52my

链接: https://pan.baidu.com/s/1yOcae6PG7LKki7FRRmG-Ow 提取码: 8qiq

因为在linux7上面安装rdbms有个报错,所以提前跑脚本,避免错误

这里需要注意:执行脚本的时候如果基础目录不是/u01请指定基础目录否则安装会失败。

AutoInstallOraOnLinux7_auxiliary.sh:

#!/bin/bash#byraysuen#v01if[$#-eq1];thenorahome=$1/oracle/product/11.2.0/db_1elseorahome=/u01/oracle/product/11.2.0/db_1fiwhiletruedoif[-f${orahome}/sysman/lib/ins_emagent.mk];thensed-i's/$(MK_EMAGENT_NMECTL)/$(MK_EMAGENT_NMECTL)-lnnz11/g'$orahome/sysman/lib/ins_emagent.mkbreakfidone################help##################AutoInstalllOraOnLinux7_auxiliary.shbasedir#default/u01################help#################

下面是自动安装脚本

AutoInstallOracle11OnLinux7.sh

#!/bin/bash#byraysuen#v0.3##################################################################################beforethebashyoumustinstallnecessaryrpmfororacleandedithostname##################################################################################echo"pleaseconfirmthatyouhaveputthescriptandsoftwareintothebasedir"echo"pleaseconfirmthatservercanconnecttointernet"c_yellow="\e[1;33m"c_red="\e[1;31m"c_end="\e[0m"#####################################################################################obtainip####################################################################################echo""echo"internetname:"foriin`ipaddr|egrep"^[0-9]"|awk-F':''{print$2}'`doecho-e"\e[1;33m"$i":"`ifconfig$i|egrep-v"inet6"|awk-F'net|netmaskt''{print$2}'|sed':label;N;s/\n//;blabel'|sed-e's///g'-e's/)//g'`"\e[0m"donewhiletruedo#read-p"pleaseenterthenameofEthernet,default[eth0]:"ethread-p"`echo-e"pleaseenterthenameofEthernet,default[${c_yellow}lo${c_end}]:"`"eth#getip#ifconfig${eth:-eth0}2>/dev/null|grep-Po'(?<=inetaddr:)[\d\.]+'ipaddr=`ifconfig${eth:-lo}2>/dev/null|egrep-v"inet6"|awk-F'inet|netmask''{print$2}'|sed':label;N;s/\n//;blabel'|sed's///g'`[$?!=0]&&echo-e"pleasinputthe${c_red}exactnameofEthernet${c_end}"&&continueif[-n"$(echo${ipaddr}|sed's/[0-9]//g'|sed's/.//g')"];thenecho-e'shellcannotobtainip,pleasinputthe${c_red}exactnameofEthernet${c_end}'continueelsebreakfidone#####################################################################################obtainbasedir####################################################################################whiletruedoread-p"`echo-e"pleaseenterthenameofbasedir,putthisshellandsoftwareinthedir.default[${c_yellow}/u01${c_end}]:"`"bdirbasedir=${bdir:-/u01}#thisisbasedir,putthisshellandsoftwareinthedirif[!-d${basedir}];thenecho-e"the${basedir}isnotexsist,please${c_red}makeitup${c_end}"continueelsebreakfidone#####################################################################################obtainhostname####################################################################################sname=$(hostname)#gethostname[-z${sname}]&&echo-e'shellcannotobtain${c_red}hostname${c_end},shellinterruptforcedly'&&exit1#####################################################################################obtainORACLE_BASEORACLE_HOME####################################################################################orabase="${basedir}/oracle"#setpathoforacle_baseorahome="${basedir}/oracle/product/11.2.0/db_1"#setpathoforacle_home#####################################################################################obtainORACLE_SID####################################################################################read-p"`echo-e"pleaseenterthesid.default[${c_yellow}orcl${c_end}]:"`"osidorasid=${osid:-orcl}#setvalueoforacle_sid#####################################################################################obtainthemomerypercentageoftheoracleusingservermomery####################################################################################whiletruedoread-p"`echo-e"Pleaseenterthemomerypercentageoftheoracleusingservermomery.default[${c_yellow}60${c_end}]:"`"mperperusemom=${mper:-60}if[-n"`echo${perusemom}|sed's/[0-9]//g'|sed's/-//g'`"];thenecho-e"pleaseenter${c_red}exactnumber${c_end}"continueelse["${perusemom}"-ge"90"]&&echo-e"thepercentagecannotbegreaterthan${c_red}90${c_end}"&&continuebreakfidone#####################################################################################obtaincurrentday####################################################################################daytime=`date+%Y%m%d`#####################################################################################stopfirefallanddisableselinux####################################################################################systemctlstopfirewalldsystemctldisablefirewalld/usr/sbin/setenforce0cp/etc/selinux/config/etc/selinux/config.$(date+%F)sed-i's/SELINUX=enforcing/SELINUX=disabled/g'/etc/selinux/config#####################################################################################edit/etc/hosts####################################################################################cp/etc/hosts/etc/hosts${daytime}.bakecho${ipaddr}''${sname}>>/etc/hosts#####################################################################################editsysctl.conf####################################################################################shmall=`/sbin/sysctl-a|grep"shmall"|awk'{print$NF}'`shmmax=`/sbin/sysctl-a|grep"shmmax"|awk'{print$NF}'`cp/etc/sysctl.conf/etc/sysctl.conf${daytime}.bakecho'kernel.shmall='${shmall}>>/etc/sysctl.confecho'kernel.shmmax='${shmmax}>>/etc/sysctl.confecho'kernel.shmmni=4096'>>/etc/sysctl.confecho'kernel.sem=25032000100128'>>/etc/sysctl.confecho'fs.file-max=6815744'>>/etc/sysctl.confecho'net.ipv4.ip_local_port_range=900065500'>>/etc/sysctl.confecho'net.core.rmem_default=262144'>>/etc/sysctl.confecho'net.core.rmem_max=4194304'>>/etc/sysctl.confecho'net.core.wmem_default=262144'>>/etc/sysctl.confecho'net.core.wmem_max=1048576'>>/etc/sysctl.confecho'fs.aio-max-nr=1048576'>>/etc/sysctl.confsysctl-p#####################################################################################editlimits.conf####################################################################################cp/etc/security/limits.conf/etc/security/limits.conf${daytime}.bakecho'oraclesoftnproc2047'>>/etc/security/limits.confecho'oraclehardnproc16384'>>/etc/security/limits.confecho'oraclesoftnofile1024'>>/etc/security/limits.confecho'oraclehardnofile65536'>>/etc/security/limits.conf#####################################################################################editpam.d/login####################################################################################cp/etc/pam.d/login/etc/pam.d/login${daytime}.bakecho'sessionrequired/lib64/security/pam_limits.so'>>/etc/pam.d/loginecho'sessionrequiredpam_limits.so'>>/etc/pam.d/login#installrpmthatoracleisnecessaryforinstallingyum-yinstallbinutilscompat-libstdc++compat-libcap1gccgcc-c++glibcglibc*.i686glibc-develglibc-devel*.i686kshlibaio*.i686libaiolibaio-devel*.i686libaio-devellibgcc*.i686libgcclibstdc++*.i686libstdc++libstdc++-devel*.i686libstdc++-devellibXi*.i686libXilibXtst*.i686libXtstmakesysstatunixODBC*.i686unixODBCunixODBC-develunzipyum-ylocalinstallcompat-libstdc++-33-3.2.3-72.el7.x86_64.rpmyum-ylocalinstallelfutils-libelf-devel-0.168-8.el7.x86_64.rpmrpm-qcompat-libstdc++-33elfutils-libelf-develbinutilscompat-libcap1gccgcc-c++glibcglibc.i686glibc-develglibc-devel.i686kshlibaio.i686libaiolibaio-devel.i686libaio-devellibgcc.i686libgcclibstdc++.i686libstdc++libstdc++-devel.i686libstdc++-devellibXi.i686libXilibXtst.i686libXtstmakesysstatunixODBC.i686unixODBCunixODBC-develunzip--qf'%{name}.%{arch}\n'|sortwhiletruedoread-p"`echo-e"Pleaseconfirmthatallrpmpackagehaveinstalled.[${c_yellow}yes/no${c_end}]defaultyes:"`"ansif["${ans:-yes}"=="yes"];thenbreakelsecontinuefidone#####################################################################################createuserandgroupsfororacleinstallation####################################################################################groupadd-g1100oinstallgroupadd-g1101dbagroupadd-g1102operuseradd-u1101-goinstall-Gdba,operoracleecho"oracle"|passwd--stdinoracle#####################################################################################createdirectoriesfororacleinstallation####################################################################################mkdir-p${orabase}chown-Roracle:oinstall${basedir}chmod-R755${basedir}#####################################################################################editoracle'sbash####################################################################################su-oracle-c"cp/home/oracle/.bash_profile/home/oracle/.bash_profile${daytime}.bak"su-oracle-c"echo'ORACLE_BASE='${orabase}>>/home/oracle/.bash_profile"su-oracle-c"echo'ORACLE_HOME='${orahome}>>/home/oracle/.bash_profile"su-oracle-c"echo'ORACLE_SID='${orasid}>>/home/oracle/.bash_profile"su-oracle-c"echo'exportORACLE_BASEORACLE_HOMEORACLE_SID'>>/home/oracle/.bash_profile"su-oracle-c"echo'exportPATH=\$PATH:\$HOME/bin:\$ORACLE_HOME/bin'>>/home/oracle/.bash_profile"su-oracle-c"echo'exportNLS_LANG=AMERICAN_AMERICA.ZHS16GBK'>>/home/oracle/.bash_profile"su-oracle-c"echo'exportLD_LIBRARY_PATH=\$LD_LIBRARY_PATH:\$ORACLE_HOME/lib'>>/home/oracle/.bash_profile"#####################################################################################uncompresstheoracleinstallfile####################################################################################su-oracle-c"unzip${basedir}/p13390677_112040_Linux-x86-64_1of7.zip-d${basedir}/"su-oracle-c"unzip${basedir}/p13390677_112040_Linux-x86-64_2of7.zip-d${basedir}/"#####################################################################################editresponseFileofrdbms####################################################################################su-oracle-c"echo'oracle.install.responseFileVersion=/oracle/install/rspfmt_dbinstall_response_schema_v11_2_0'>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.option=INSTALL_DB_SWONLY'>>${basedir}/db.rsp"su-oracle-c"echo'ORACLE_HOSTNAME='${sname}>>${basedir}/db.rsp"su-oracle-c"echo'UNIX_GROUP_NAME=oinstall'>>${basedir}/db.rsp"su-oracle-c"echo'INVENTORY_LOCATION='${basedir}'/oraInventory'>>${basedir}/db.rsp"su-oracle-c"echo'SELECTED_LANGUAGES=en'>>${basedir}/db.rsp"su-oracle-c"echo'ORACLE_HOME='${orahome}>>${basedir}/db.rsp"su-oracle-c"echo'ORACLE_BASE='${orabase}>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.InstallEdition=EE'>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.EEOptionsSelection=false'>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.optionalComponents='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.DBA_GROUP=dba'>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.OPER_GROUP=oinstall'>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.CLUSTER_NODES='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.isRACOneInstall=false'>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.racOneServiceName='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.type=GENERAL_PURPOSE'>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.globalDBName='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.SID='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.characterSet='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.memoryOption=false'>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.memoryLimit='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.installExampleSchemas=false'>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.enableSecuritySettings=true'>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.password.ALL='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.password.SYS='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.password.SYSTEM='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.password.SYSMAN='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.password.DBSNMP='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.control=DB_CONTROL'>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.gridcontrol.gridControlServiceURL='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.automatedBackup.enable=false'>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.automatedBackup.osuid='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.automatedBackup.ospwd='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.storageType='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.fileSystemStorage.dataLocation='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.starterdb.fileSystemStorage.recoveryLocation='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.asm.diskGroup='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.install.db.config.asm.ASMSNMPPassword='>>${basedir}/db.rsp"su-oracle-c"echo'MYORACLESUPPORT_USERNAME='>>${basedir}/db.rsp"su-oracle-c"echo'MYORACLESUPPORT_PASSWORD='>>${basedir}/db.rsp"su-oracle-c"echo'SECURITY_UPDATES_VIA_MYORACLESUPPORT=false'>>${basedir}/db.rsp"su-oracle-c"echo'DECLINE_SECURITY_UPDATES=true'>>${basedir}/db.rsp"su-oracle-c"echo'PROXY_HOST='>>${basedir}/db.rsp"su-oracle-c"echo'PROXY_PORT='>>${basedir}/db.rsp"su-oracle-c"echo'PROXY_USER='>>${basedir}/db.rsp"su-oracle-c"echo'PROXY_PWD='>>${basedir}/db.rsp"su-oracle-c"echo'PROXY_REALM='>>${basedir}/db.rsp"su-oracle-c"echo'COLLECTOR_SUPPORTHUB_URL='>>${basedir}/db.rsp"su-oracle-c"echo'oracle.installer.autoupdates.option=SKIP_UPDATES'>>${basedir}/db.rsp"su-oracle-c"echo'oracle.installer.autoupdates.downloadUpdatesLoc='>>${basedir}/db.rsp"su-oracle-c"echo'AUTOUPDATES_MYORACLESUPPORT_USERNAME='>>${basedir}/db.rsp"su-oracle-c"echo'AUTOUPDATES_MYORACLESUPPORT_PASSWORD='>>${basedir}/db.rsp"#####################################################################################editresponseFileofinstance####################################################################################echo'[GENERAL]'>${basedir}/dbca.rspecho'RESPONSEFILE_VERSION="''11.2.0''"'>>${basedir}/dbca.rspecho'OPERATION_TYPE="''createDatabase''"'>>${basedir}/dbca.rspecho'[CREATEDATABASE]'>>${basedir}/dbca.rspecho'GDBNAME="'${orasid}'"'>>${basedir}/dbca.rspecho'SID="'${orasid}'"'>>${basedir}/dbca.rspecho'TEMPLATENAME="''General_Purpose.dbc''"'>>${basedir}/dbca.rspecho'SYSPASSWORD="''oracle''"'>>${basedir}/dbca.rspecho'SYSTEMPASSWORD="''oracle''"'>>${basedir}/dbca.rspecho'SYSMANPASSWORD="''oracle''"'>>${basedir}/dbca.rspecho'CHARACTERSET="''ZHS16GBK''"'>>${basedir}/dbca.rspecho'NATIONALCHARACTERSET="''UTF8''"'>>${basedir}/dbca.rspecho'MEMORYPERCENTAGE="'${perusemom}'"'>>${basedir}/dbca.rspecho'AUTOMATICMEMORYMANAGEMENT="''TRUE''"'>>${basedir}/dbca.rspecho'[createTemplateFromDB]'>>${basedir}/dbca.rspecho'SOURCEDB="'${orasid}'"'>>${basedir}/dbca.rspecho'SYSDBAUSERNAME="''system''"'>>${basedir}/dbca.rspecho'TEMPLATENAME="''MyCopyTEMPLATE''"'>>${basedir}/dbca.rspecho'[createCloneTemplate]'>>${basedir}/dbca.rspecho'SOURCEDB="'${orasid}'"'>>${basedir}/dbca.rspecho'SYSDBAUSERNAME="''sys''"'>>${basedir}/dbca.rspecho'TEMPLATENAME="''MyCloneTEMPLATE''"'>>${basedir}/dbca.rspecho'[DELETEDATABASE]'>>${basedir}/dbca.rspecho'SOURCEDB="'${orasid}'"'>>${basedir}/dbca.rspecho'SYSDBAUSERNAME="''sys''"'>>${basedir}/dbca.rspecho'[generateScripts]'>>${basedir}/dbca.rspecho'TEMPLATENAME="''NewDatabase''"'>>${basedir}/dbca.rspecho'GDBNAME="'${orasid}'"'>>${basedir}/dbca.rspecho'[CONFIGUREDATABASE]'>>${basedir}/dbca.rspecho'[ADDINSTANCE]'>>${basedir}/dbca.rspecho'DB_UNIQUE_NAME="'${orasid}'"'>>${basedir}/dbca.rspecho'INSTANCENAME="'${orasid}'"'>>${basedir}/dbca.rspecho'NODELIST='>>${basedir}/dbca.rspecho'SYSDBAUSERNAME="''sys''"'>>${basedir}/dbca.rspecho'[DELETEINSTANCE]'>>${basedir}/dbca.rspecho'DB_UNIQUE_NAME="'${orasid}'"'>>${basedir}/dbca.rspecho'INSTANCENAME="'${orasid}'"'>>${basedir}/dbca.rspecho'SYSDBAUSERNAME="''oracle''"'>>${basedir}/dbca.rsp#####################################################################################changetheownerandgroupoftheresponseFile####################################################################################chown-Roracle:oinstall${basedir}chmod-R755${basedir}#####################################################################################checkswap,swapmustbegreaterthen150M####################################################################################whiletruedoswap=`free-m|grepSwap|awk'{print$4}'`if[[${swap}-lt150]];thenecho'failed,swaplessthen150M'echo'pleaseincreasethespaceofswap,greaterthen150M'elsebreakfiecho"Haveyoubeenincreasedthespaceofswap?"read-p"`echo-e"Whetherornottocheckthespaceofswap?${c_yellow}yes/no${c_end}.nowillquittheintalling:"`"swapDoneif[["${swapDone}"="yes"]];thencontinueelif[["${swapDone}"="no"]];thenexitelseecho"pleaseenteryes/no"continuefidone#####################################################################################installrdbms####################################################################################su-oracle-c"${basedir}/database/runInstaller-silent-noconfig-ignorePrereq-responseFile${basedir}/db.rsp>${basedir}/install.log"#followcodingarecreateoracleinstance.ifyoudon'twanttocreateinstallinstance,youcanuse#makingcodinginvalidlyecho''echo''echo-e"youusethecommandtogetinformationaboutinstallation:\e[1;37mtail-f${basedir}/install.log${c_end}"sleep1mecho''#####################################################################################obtaindatafiledestination####################################################################################echo-e"Defaultdatafiledirectoryis${c_yellow}${orabase}/oradata/${orasid}${c_end}"whiletruedoread-p"`echo-e"Youcanspecifyanotherdirectory.Doyousurechangedatafiledirectory.defaultno.${c_yellow}yes/no${c_end}:"`"ansif["${ans:-no}"=="yes"];thenwhiletruedoread-p"`echo-e"pleaseenteryourdatafiledirectory:"`"datafiledirif["${datafiledir:-none}"=="none"];thenecho"Thedirectorymustbespecified."continueelseecho-e"Thedatafiledirectoryis${c_yellow}${datafiledir}${c_end}."read-p"`echo-e"Areyousure?Defaultyes.${c_yellow}yes/no${c_end}:"`"ans2if["${ans2:-yes}"=="yes"];thenbreakelsecontinuefifidonebreakelif["${ans:-no}"=="no"];thenbreakelsecontinuefidone#####################################################################################installinstance####################################################################################whiletruedoinstallRes=`tail-1${basedir}/install.log|awk'{print$1}'`if[["${installRes}"="Successfully"]];then${basedir}/oraInventory/orainstRoot.sh${orahome}/root.sh#createinstanceif["${datafiledir:-none}"=="none"];thensu-oracle-c"dbca-silent-responseFile${basedir}/dbca.rsp-cloneTemplate"elseif[-d${datafiledir}];thenchownoracle:oinstall${datafiledir}elsemkdir${datafiledir}chownoracle:oinstall${datafiledir}fisu-oracle-c"dbca-silent-responseFile${basedir}/dbca.rsp-cloneTemplate-datafileDestination${datafiledir}"fibreakelsesleep20scontinuefidone#####################################################################################startlisten,theportis1521####################################################################################su-oracle-c"netca/silent/responsefile${basedir}/database/response/netca.rsp"#####################################################################################edittnsnames.ora####################################################################################su-oracle-c"echo${orasid}'='>>${orahome}/network/admin/tnsnames.ora"su-oracle-c"echo'(DESCRIPTION='>>${orahome}/network/admin/tnsnames.ora"su-oracle-c"echo'(ADDRESS_LIST='>>${orahome}/network/admin/tnsnames.ora"su-oracle-c"echo'(ADDRESS=(PROTOCOL=TCP)(HOST='${sname}')(PORT=1521))'>>${orahome}/network/admin/tnsnames.ora"su-oracle-c"echo')'>>${orahome}/network/admin/tnsnames.ora"su-oracle-c"echo'(CONNECT_DATA='>>${orahome}/network/admin/tnsnames.ora"su-oracle-c"echo'(SERVICE_NAME='${orasid}')'>>${orahome}/network/admin/tnsnames.ora"su-oracle-c"echo')'>>${orahome}/network/admin/tnsnames.ora"su-oracle-c"echo')'>>${orahome}/network/admin/tnsnames.ora"#####################################################################################initialparameter####################################################################################su-oracle-c"sqlplus/nolog<<EOFconn/assysdbaALTERPROFILEDEFAULTLIMITPASSWORD_LIFE_TIMEUNLIMITED;altersystemsetopen_cursors=3000scope=both;altersystemsetsession_cached_cursors=100scope=spfile;altersystemsetprocesses=1500scope=spfile;altersystemsetsessions=1500scope=spfile;altersystemsetsec_case_sensitive_logon=false;ALTERSYSTEMSET\"_use_adaptive_log_file_sync\"=false;exitEOF"su-oracle-c"sqlplus/nolog<<EOFconn/assysdbashutdownimmediate;startupexitEOF"

感谢各位的阅读!关于“oracle11g在linux7的静默安装脚本怎么写”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!