项目分步6:配置NFS服务

作者: 大白菜的猪猪 | 来源:发表于2020-05-12 20:51 被阅读0次

    部署NFS服务

    安装软件

    [root@nfs30 ~]# yum -y install

    nfs-utils rpcbind

    修改配置文件

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

    /sitedir *(rw)

    启动服务

    1.启动服务

    [root@nfs30 ~]# systemctl start

    rpcbind 启动服务

    [root@nfs30 ~]# systemctl enable

    rpcbind 开机自启

    [root@nfs30 ~]# systemctl start nfs 启动服务

    [root@nfs30 ~]# systemctl enable nfs开机自启

    [if !supportLists]2.[endif]查看共享信息

    [root@nfs30 ~]# showmount -e

    localhost

    Export list for localhost:

    /sitedir *

    相关文章

      网友评论

        本文标题:项目分步6:配置NFS服务

        本文链接:https://www.haomeiwen.com/subject/bkwinhtx.html