這次試了試使用靜默安裝Oracle,過(guò)程比較麻煩,好在有文檔幫助,但是由于自己的粗心導(dǎo)致了各種奇葩問(wèn)題,記錄下來(lái)。
進(jìn)行靜默安裝數(shù)據(jù)庫(kù)
$ORACLE_HOME/bin/dbca -silent -responseFile /home/oracle/etc/dbca.rsp
出現(xiàn)問(wèn)題:
[oracle@bogon ~]$ $ORACLE_HOME/bin/dbca -silent -responseFile /home/oracle/etc/dbca.rsp
Exception in thread "main" java.lang.NullPointerException
at oracle.sysman.assistants.util.INIFile$IniPair.init>(INIFile.java:88)
at oracle.sysman.assistants.util.INIFile$IniSection.addPair(INIFile.java:225)
at oracle.sysman.assistants.util.INIFile.readINIFile(INIFile.java:827)
at oracle.sysman.assistants.util.INIFile.getProfileString(INIFile.java:439)
at oracle.sysman.assistants.dbca.backend.CommandLineArguments.processResponseFile(CommandLineArguments.java:4340)
at oracle.sysman.assistants.dbca.backend.CommandLineArguments.process(CommandLineArguments.java:3564)
at oracle.sysman.assistants.dbca.Dbca.execute(Dbca.java:109)
at oracle.sysman.assistants.dbca.Dbca.main(Dbca.java:184)
網(wǎng)上百度了下,說(shuō)沒(méi)有JDK環(huán)境,一查還真沒(méi)有,然后安裝JDK,這里直接安裝了openjdk
命令:
yum install java*
yum install java-1.8.0-openjdk.i686 -y
然后并沒(méi)有什么用,還是報(bào)錯(cuò),最后查看dbca.rsp文件,發(fā)現(xiàn)多寫一個(gè)i,尷尬,接下來(lái)又報(bào)錯(cuò)了,這次是權(quán)限問(wèn)題
Cannot create directory "/soft/u01/app/oracle/cfgtoollogs/dbca/orcl".
Error writing into silent log -- /soft/u01/app/oracle/cfgtoollogs/dbca/silent.log (Permission denied)
Error in file copy from /soft/u01/app/oracle/cfgtoollogs/dbca/silent.log> to /soft/u01/app/oracle/cfgtoollogs/dbca/orcl.log>
Look at the log file "/soft/u01/app/oracle/cfgtoollogs/dbca/silent.log" for furt her details.
給文件夾賦權(quán)限
chmod -R 775 /soft/u01/app/
總結(jié):還是自己太粗心
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- Oracle中的游標(biāo)和函數(shù)詳解
- oracle獲取當(dāng)前時(shí)間,精確到毫秒并指定精確位數(shù)的實(shí)現(xiàn)方法
- win10 oracle11g安裝報(bào)錯(cuò)問(wèn)題集合 附解決方法
- Oracle連接遠(yuǎn)程數(shù)據(jù)庫(kù)的四種方法
- Oracle解析復(fù)雜json的方法實(shí)例詳解
- Oracle存儲(chǔ)過(guò)程、包、方法使用總結(jié)(推薦)
- oracle創(chuàng)建表空間、授權(quán)、創(chuàng)建用戶、導(dǎo)入dmp文件
- Oracle 如何規(guī)范清理v$archived_log記錄實(shí)例詳解