真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎樣進(jìn)行安裝oracle11gonsolaris11-創(chuàng)新互聯(lián)

怎樣進(jìn)行安裝oracle11g on solaris11,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

站在用戶的角度思考問題,與客戶深入溝通,找到獨(dú)山子網(wǎng)站設(shè)計(jì)與獨(dú)山子網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:網(wǎng)站制作、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、主機(jī)域名、虛擬空間、企業(yè)郵箱。業(yè)務(wù)覆蓋獨(dú)山子地區(qū)。

    為了研究vaga大牛的系列文章決定安裝個(gè)solaris11并在其上安裝oracle 11g,由于之前從沒接觸過solaris,于是安裝過程中遇到很多問題,下面逐一記錄以便日后查看。

    1.安裝solaris

     1.1安裝solaris字符界面

      首先從oracle官網(wǎng)下載solaris-text鏡像,大小500多M,安裝過程很順利,基本是一路F2功能鍵下去(相當(dāng)于next)
     1.2安裝solaris圖形界面
      登陸solaris,然后執(zhí)行pkg install solaris-desktop,這里用到的默認(rèn)軟件包repository的URL是http://pkg.oracle.com/solaris/release/,MOS上有一篇文章介紹了如何修改默認(rèn)的軟件包repository將其指向Oracle Solaris 11 supported repository (https://pkg.oracle.com/solaris/support),不過我按照其操作時(shí)提示該URL已失效!

    2. 創(chuàng)建oracle用戶
    root@solaris:~# groupadd oinstall
    root@solaris:~# groupadd dba
    root@solaris:~# groupadd oper
    root@solaris:~# useradd -g oinstall -G dba,oper oracle

    3.創(chuàng)建oracle目錄
     root@solaris:~# mkdir -p /u01/app
     root@solaris:~# chown -R oracle:oinstall /u01/app

    4.修改系統(tǒng)參數(shù)
     4.1修改內(nèi)核參數(shù)  

    root@solaris:~# projadd -U oracle -K "project.max-shm-memory=(priv,4g,deny)" user.oracle
    root@solaris:~# # projmod -sK "project.max-sem-nsems=(priv,512,deny)" user.oracle
    root@solaris:~# # projmod -sK "project.max-sem-ids=(priv,128,deny)" user.oracle
    root@solaris:~# # projmod -sK "project.max-shm-ids=(priv,128,deny)" user.oracle

     4.2修改網(wǎng)絡(luò)參數(shù)
    root@solaris:~# # ipadm set-prop -p smallest_anon_port=9000 tcp
    root@solaris:~# # ipadm set-prop -p largest_anon_port=65500 tcp
    root@solaris:~# # ipadm set-prop -p smallest_anon_port=9000 udp
    root@solaris:~# # ipadm set-prop -p largest_anon_port=65500 udp 
 

    5.設(shè)置oracle環(huán)境變量
    -bash-4.1$ cat .bash_profile
    ORACLE_BASE=/u01/app
    ORACLE_HOME=$ORACLE_BASE/oracle/product/11.2.0/db_1
    ORACLE_SID=wilson
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$CRS_HOME/lib
    PATH=$PATH:/usr/local/bin:$ORACLE_HOME/bin:$CRS_HOME/bin
 
    export ORACLE_BASE ORACLE_HOME ORACLE_SID LD_LIBRARY_PATH PATH


  6.運(yùn)行runInstall
  到這一步基本就和常規(guī)的oracle安裝沒啥區(qū)別了。

  7.安裝過程中的錯(cuò)誤

 7.1 [INS-13001] Environment does meet minimum requirements. Are you sure you want to continue?
    解決方法:下載oracle補(bǔ)丁10098816,并安裝

    7.2 Checking monitor: must be configured to display at least 256 colors >>> Could not execute auto check for display colors using command /usr/openwin/bin/xdpyinfo. Check if the DISPLAY variable is set. Failed <<<< Some requirement checks failed. You must fulfill these requirements before continuing with the installation,at which time they will be rechecked.
    解決方法:安裝SUNWxwplt 軟件包,并設(shè)置DISPLAY參數(shù),并以root用戶執(zhí)行”xhost +“命令

    7.3 Exception in thread “main” java.lang.UnsatisfiedLinkError:
… libmawt.so: ld.so.1: java: fatal: libXm.so.4: open failed: No such file or directory
   解決方法:安裝SUNWmfrun軟件包
 
   7.4 在運(yùn)行runinstall界面的預(yù)安裝檢查中提示內(nèi)核參數(shù)"project.max-shm-memory"設(shè)置不當(dāng),即使運(yùn)行runfixup.sh后依然報(bào)錯(cuò)
  解決方法:重啟系統(tǒng)(沒玩過solaris還真不知道,這里不像linux系統(tǒng)用sysctl -p就可以了,哈哈)

     Ok,這里總算是有驚無險(xiǎn)的把oracle11g成功安裝在solaris11上。

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。


網(wǎng)站題目:怎樣進(jìn)行安裝oracle11gonsolaris11-創(chuàng)新互聯(lián)
當(dāng)前URL:http://weahome.cn/article/dpgjjs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部