亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費(fèi)注冊(cè) 查看新帖 |

Chinaunix

  平臺(tái) 論壇 博客 文庫
最近訪問板塊 發(fā)新帖
查看: 8712 | 回復(fù): 8
打印 上一主題 下一主題

關(guān)于32位linux下ORACLE 最大可用內(nèi)存的疑問 [復(fù)制鏈接]

論壇徽章:
0
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報(bào)告]
發(fā)表于 2007-10-19 16:40 |只看該作者 |倒序?yàn)g覽
10可用積分
請(qǐng)問在32位的suse 9下安裝ORACLE 10G后,ORACLE最大所能使用的內(nèi)存是否為4G?
為服務(wù)器配置了16G內(nèi)存,現(xiàn)在卻僅僅用了一點(diǎn)點(diǎn),郁悶啊

論壇徽章:
0
2 [報(bào)告]
發(fā)表于 2007-10-19 16:56 |只看該作者
剛才查了查,很多資料稱32位操作系統(tǒng) ORACLE只支持2G內(nèi)存,不知道是否屬實(shí)??

論壇徽章:
0
3 [報(bào)告]
發(fā)表于 2007-10-19 17:27 |只看該作者
還是用64位吧,32位OS上的Oracle,除非采用特殊的技術(shù),一般sga只能達(dá)到1.7G

論壇徽章:
0
4 [報(bào)告]
發(fā)表于 2007-10-19 21:04 |只看該作者
建議使用x86-64 Linux, 如果必須使用32位Linux, 可參考Metalink note  260152.1        Summary About the Large SGA & Address Space on RH Linux
我摘錄重點(diǎn)部分給你:

Configuration 5

    * RedHat Advanced Server (RHAS) 2.1 (shmfs/tmpfs)
    * RedHat Enterprise Linux (RHEL) 3.0 (shmfs/tmpfs, ramfs)
    * Configuration : VLM mode + in-memory filesystem (shmfs/tmpfs, ramfs)
    * SGA MAX Size 62GB
    * Details in Note 211424.1, Note 262004.1

Since shmfs/tmpfs, ramfs is a memory file system, its size canbe as high as the maximum allowable VM size which is 64GB. SGA MAX Size 62GB theoretic (depending on block size) Only the buffer cache part of the SGA can take advantage of the additional memory. For RHEL3/4 to use the VLM option to create a very large buffercache, you have two options (details in Note 262004.1):

    * Use shmfs/tmpfs much as you would in RHAS2.1:

    mountNote 262004.1):

        * Use shmfs/tmpfs much as you would in RHAS2.1:

        mount a shmfs with a certain size to /dev/shm, and set the correct permissions. Keep in mind that in RHEL3, shmfs allocate memory is pageable. Better to use tmpfs since there is no need to specify size.

        Mount shmfs:

                    # mount -t
    shm shmfs -o size=20g /dev/shm
                   
                    Edit /etc/fstab:
                    shmfs                /dev/shm        shm        size=20g        0        0
                           
                            ---- OR ----                       

        Mount tmpfs:

                    # mount –t tmpfs tmpfs /dev/shm
                                           
                    Edit /etc/fstab:
                    none                /dev/shm        tmpfs        defaults        0        0
           

        * Use ramfs (Ref. Note 262004.1, Note 259772.1)

        ramfs is similar to shmfs, except that pages are not pageable/swappable. This approach provides the commonly desired effect. Ramfs is created by:

                    # mount -t ramfs ramfs /dev/shm (unmount /dev/shm first).        

        The only difference here is that the ramfs pages are not backed by big pages.

        * When the shmfs/tmpfs,ramfs is available, Oracle server should know whether to use it or not. Need to use the parameter 'use_indirect_data_buffers=true' remains the same;

        If any one of DB_CACHE_SIZE, DB_xK_CACHE_SIZE are set, convert them to DB_BLOCK_BUFFERS

            * How to use the memory file system shmfs in short,for details see Note 211424.1:

                *  Mount the shmfs file system as root using command:

                        # mount -t shm shmfs -o nr_blocks=8388608 /dev/shm

                * Set the shmmax parameter to half of RAM size at most 4294967295

                        # echo 4294967295 >/proc/sys/kernel/shmmax                    

            * Set the init.ora parameter use_indirect_data_buffers=true

            * Startup oracle.

            * How to use the memory file system ramfs in short, for details see Note 262004.1:

                * Mount the shmfs file system as root using command:

                        % umount /dev/shm
                        % mount -t ramfs ramfs /dev/shm
                        % chown oracle:dba /dev/shm

                * Increase the "max locked memory" ulimit (ulimit -l)

                Add the following to /etc/security/limits.conf:

                          oracle           soft    memlock         3145728
                          oracle           hard    memlock         3145728

                (in case of ssh see details on Note 262004.1)

            * Set the init.ora parameter use_indirect_data_buffers=true

            * Startup oracle.

論壇徽章:
5
榮譽(yù)會(huì)員
日期:2011-11-23 16:44:17CU大;照
日期:2013-09-18 15:15:15CU大;照
日期:2013-09-18 15:15:45未羊
日期:2014-02-25 14:37:19射手座
日期:2014-12-26 22:55:37
5 [報(bào)告]
發(fā)表于 2007-10-20 11:53 |只看該作者
直接用64BIT多方便

論壇徽章:
0
6 [報(bào)告]
發(fā)表于 2007-10-22 14:53 |只看該作者
俺也遇到過類似問題,suse9下給swap 6G然后系統(tǒng)就啟動(dòng)不起來了,不知道什么原因,好像跟Oracle沒關(guān)系吧?

論壇徽章:
0
7 [報(bào)告]
發(fā)表于 2007-11-10 23:44 |只看該作者
也嘗試在用64位的SUSE 9上安裝ORACLE,一切很順利,但是不知道為什么在創(chuàng)建數(shù)據(jù)庫的,總提示pmon進(jìn)程無法啟動(dòng):em11: :em11: :em11:
由于系統(tǒng)急,只好改回32位的SUSE 9。。。。。

論壇徽章:
0
8 [報(bào)告]
發(fā)表于 2007-11-10 23:45 |只看該作者
不過64位的性能真的比32位的好很多啊,以后看看要慢慢的轉(zhuǎn)到64位了:

論壇徽章:
0
9 [報(bào)告]
發(fā)表于 2007-11-12 11:07 |只看該作者
在suse 9 X86_64上安裝,是不是在建立數(shù)據(jù)庫時(shí)報(bào)ora-27125錯(cuò)誤。
您需要登錄后才可以回帖 登錄 | 注冊(cè)

本版積分規(guī)則 發(fā)表回復(fù)

  

北京盛拓優(yōu)訊信息技術(shù)有限公司. 版權(quán)所有 京ICP備16024965號(hào)-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號(hào):11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報(bào)專區(qū)
中國(guó)互聯(lián)網(wǎng)協(xié)會(huì)會(huì)員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關(guān)心和支持過ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請(qǐng)注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP