zoukankan      html  css  js  c++  java
  • Linux安装Oracle调整tmpfs以突破1.7G的限制

    调整/dev/shm的大小

    ---------------------------------------------------------
    1、查看大小
    df -h /dev/shm


    [@more@]2、修改大小(修改fstab文件以便重启生效)
    vi /etc/fstab
    tmpfs /dev/shm tmpfs defaults,size=4096M 0 0

    3、重新挂载
    mount -o remount,size=4096M /dev/shm

    4、查看修改后的大小
    df -h /dev/shm
    ---------------------------------------------------------

    如果是Oracle Enterprise Linux 6.0及以上版本系统,还需要修改:/etc/rc.d/rc.sysinit

    1、注释如下语句

    #mount -f /dev/shm >/dev/null2>&1

    2、在rc.sysinit 中找到如下内容

    # Mount all other filesystems (except forNFS and /proc, which is already

    # mounted). Contrary to standard usage,

    # filesystems are NOT unmounted in singleuser mode.

    if [ "$READONLY" !="yes" ] ; then

    action $"Mounting local filesystems: " mount -a -t nonfs,nfs4,smbfs,ncpfs,cifs,gfs,gfs2 -O no_netdev

    else

    action $"Mounting local filesystems: " mount -a -n -t nonfs,nfs4,smbfs,ncpfs,cifs,gfs,gfs2 -O no_netdev

    fi

    =====> 在该处添加如下部分内容tmpfs

    if [ "$READONLY" !="yes" ] ; then

    action $"Mounting local filesystems: " mount -a -t tmpfs,nonfs,nfs4,smbfs,ncpfs,cifs,gfs,gfs2 -O no_netdev

    else

    action $"Mounting local filesystems: " mount -a -n -t tmpfs,nonfs,nfs4,smbfs,ncpfs,cifs,gfs,gfs2 -Ono_netdev

    fi

    3、重新启动系统

    :转

  • 相关阅读:
    同步 异步 阻塞 非阻塞深入理解
    TCP的三次握手四次挥手
    dom事件
    Vue 无痕 刷新页面
    事件冒泡 捕获 事件流
    gulp
    懒加载
    Object.prototype.toString.call() 判断某个对象属于哪种内置类型 type instanceof Object.prototype.toString.call 区别
    css sass less
    node module.exports exports
  • 原文地址:https://www.cnblogs.com/monogem/p/9802686.html
Copyright © 2011-2022 走看看