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、重新启动系统

    :转

  • 相关阅读:
    jQuery入门教程
    vue-lazyload 图片不更新
    Eggjs 设置跨域请求
    Vue.js错误: Maximum call stack size exceeded
    ubuntu nginx ssl 证书配置
    ubuntu 安装nginx, 出现 Unable to locate package
    nginx 判断移动端或者PC端 进入不同域名
    node.js 生成二维码
    Linux 配置ssh 免密码登录
    nodejs 从部署到域名访问
  • 原文地址:https://www.cnblogs.com/monogem/p/9802686.html
Copyright © 2011-2022 走看看