zoukankan      html  css  js  c++  java
  • NFS

    NFS 文件服务的 /data/share  通过NFS挂载共享给ng服务器。

    一 、 NFS 服务端 172.31.17.91 上
    创建共享目录
    mkdir /data/share
     
    附权限
    chown -R ifly:ifly /data/share
    chmod -R 777 /data/share
     
    [root@cycore logs]# cat /etc/exports 
    /data/share *(rw,no_root_squash,sync)
     

    NFS安装 (NFS 客户端和服务端都安装

    yum  -y install  nfs-utils

    yum  -y install  rpcbind

    重启相关服务:
    service nfs restart
    chkconfig nfs on
     
    二、客户端机器  172.31.17.94 
     
    创建挂载目录
    mkdir /data/share
     
    挂载共享目录

    mount 172.31.17.91:/data/share/   /data/share/
    df -h
    [root@web sites]# showmount -e  172.31.17.91
    Export list for 172.31.17.91:
    /data/share *
     
    开机自启动挂载:
    cat    /etc/fstab/
    172.31.17.91:/data/share/  /data/share         ext4    defaults         0 0  
     
     
    redis 清理缓存
    [ifly@mysql bin]$ ./redis-cli -c -p 6379
     
    127.0.0.1:6379> dbsize
    (integer) 62
    127.0.0.1:6379> flushall     
    OK
    127.0.0.1:6379> dbsize
    (integer) 0
  • 相关阅读:
    P6585 中子衰变
    [APIO2020]有趣的旅途
    CF1354F Summoning Minions
    CF1361C Johnny and Megan's Necklace
    CF1368E Ski Accidents
    CF1458C Latin Square
    CF1368F Lamps on a Circle
    用户和组的管理
    Windows命令
    1
  • 原文地址:https://www.cnblogs.com/vzhangxk/p/15303389.html
Copyright © 2011-2022 走看看