• linux NFS 服务器的安装


    1. 安装 nfs 服务

    [root@allentuns ~]# yum -y install  nfs-utils rpcbind

    2. 启动 nfs 服务

    [root@allentuns ~]# /etc/init.d/rpcbind start

    Starting rpcbind:                                           [  OK  ]

    [root@allentuns ~]# /etc/init.d/nfs start

    Starting NFS services:                                      [  OK  ]

    Starting NFS mountd:                                        [  OK  ]

    Starting NFS daemon:                                       [  OK  ] Starting RPC idmapd:                                        [  OK  ]

    3. 创建共享目录

    [root@allentuns ~]# mkdir -pv /web/htdocs mkdir: created directory `/web'

    mkdir: created directory `/web/htdocs'

    [root@allentuns ~]# ll -d /web/htdocs/                                                                                                50

    drwxr-xr-x. 2 root root 4096 May  3 18:50 /web/htdocs/

    4. 添加共享目录其它用户有写权限 [root@allentuns ~]# chmod o+w /web/htdocs [root@allentuns ~]# ll -d /web/htdocs/

    drwxr-xrwx. 2 root root 4096 May  3 18:50 /web/htdocs/

    5. 修改配置文件,设置共享目录或者分区

    [root@allentuns ~]# vim /etc/exports

    #增加一行

    /web/htdocs 192.168.1.5(rw)

    6. 重读 exports 文件,使立刻生效

    [root@allentuns ~]# exportfs -r

    7. 查看服务器共享的文件。前提需要域名解析,否则报错

    [root@allentuns ~]# uname -n

    allentuns

    [root@allentuns ~]# echo "127.0.0.1 allentuns" >> /etc/hosts

    [root@allentuns ~]# showmount -e

    Export list for allentuns:

    /web/htdocs 192.168.1.5

  • 相关阅读:
    bzoj4705: 棋盘游戏
    bzoj4709 [jsoi2011]柠檬
    51nod 1411 矩阵取数问题 V3
    51nod1258 序列求和V4
    51nod 1348 乘积之和
    PostgreSQL Replication之第九章 与pgpool一起工作(3)
    PostgreSQL Replication之第九章 与pgpool一起工作(2)
    PostgreSQL Replication之第九章 与pgpool一起工作(1)
    PostgreSQL Replication之第八章 与pgbouncer一起工作(5)
    PostgreSQL Replication之第八章 与pgbouncer一起工作(4)
  • 原文地址:https://www.cnblogs.com/fanweisheng/p/11327505.html
Copyright © 2020-2023  润新知