zoukankan      html  css  js  c++  java
  • Linux运维入门实战题

    第一题:按要求搭建配置NFS服务
      准备三个服务器或虚拟机A、B、C
      配置NFS服务:
      要求:
      1)在NFS服务端A上共享/data/w_shared及data/r_ shared两个文件目录,允许从NFS客户端B,C上分别挂载共享目录后可实现从B,C上只读/data/r_ shared, 可写/data/w_ shared。
      2) NFS客户端B上的挂载点为/data/b_ w (写),/data/b_ r (读),NFS客户端C上的挂载点为/data/w_你的名字英文(写) ,/data/r_ 你名字英文(读)。
      3)从NFS客户端B上的NFS可写挂载点目录创建任意文件,从C上可以删除这个创建的文件,反之也可以。
    在服务器端操作如下:
    1.编辑nfs配置文件

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

    2.写入内容

    /data/w_share 192.168.157.0/24(rw,sync)
    /data/r_share 192.168.157.0/24(ro)

    3.创建规定的共享目录

    [root@www ~]# mkdir -p /data/w_share /data/r_share

    4.授权目录用户

    [root@www ~]# chown -R nfsnobody /data/w_share/

    5.启动服务rpcbind和nfs

    [root@www ~]# /etc/init.d/rpcbind restart
    [root@www ~]# /etc/init.d/nfs restart

    6.开机自启动:

    [root@www ~]# chkconfig nfs on
    [root@www ~]# chkconfig rpcbind on

    7.防火墙,selinux关掉

    [root@www ~]# /etc/init.d/iptables stop

    客户端1的操作:
    1.创建挂载点

    [root@localhost ~]# mkdir /data/{b_w,b_r} -p

    2.查看挂载内容

    [root@localhost ~]# showmount -e 192.168.157.132
    Export list for 192.168.157.132:
    /data/r_share 192.168.157.0/24
    /data/w_share 192.168.157.0/24

    3.挂载共享目录

    [root@localhost ~]# mount -t nfs 192.168.157.132:/data/r_share /data/b_r/
    [root@localhost ~]# mount -t nfs 192.168.157.132:/data/w_share /data/b_w

    4.启动rpc

    [root@www ~]# /etc/init.d/rpcbind restart

    5.测试创建文件:

    [root@localhost ~]# touch /data/b_r/test.txt#创建不了是正确的
    [root@localhost ~]# touch /data/b_w/test.txt#能创建是正确的

    客户端2的操作:
    1.创建挂载点:

    mkdir /data/{w_oldboy,r_oldboy} -p

    2.挂载共享目录

    [root@localhost ~]# mount -t nfs 192.168.157.132:/data/r_share /data/r_odboy/
    [root@localhost ~]# mount -t nfs 192.168.157.132:/data/w_share /data/w_oldboy/

    3.启动rpc

    [root@www ~]# /etc/init.d/rpcbind restart

    ******************************************************************************************************************
    第二题:使用Linux rescue(救援模式)修复/etc/fstab(改错配置,然后重启系统)
      1.输入密码进入救援模式
      2.查看/etc/fstab文件看配置是否正确
      3.重新挂载根分区

    mount -o rw,remount /

      4.进入文件修改错误配置,然后保存重启
    ************************************************************************************************************
    第三题:root密码忘记了,怎么从新获取密码:
      1.重启后按e进入keytable内然后加上一个1
      2.保存后按b进入仅主机模式
      3.然后直接用命令passwd修改密码
      4.然后重启就可以输入新密码了

  • 相关阅读:
    HTB-靶机-Charon
    第一篇Active Directory疑难解答概述(1)
    Outlook Web App 客户端超时设置
    【Troubleshooting Case】Exchange Server 组件状态应用排错?
    【Troubleshooting Case】Unable to delete Exchange database?
    Exchange Server 2007的即将生命周期,您的计划是?
    "the hypervisor is not running" 故障
    Exchange 2016 体系结构
    USB PE
    10 months then free? 10个月,然后自由
  • 原文地址:https://www.cnblogs.com/zrxuexi/p/11583351.html
Copyright © 2011-2022 走看看