访问网络文件共享服务

第七单元

一 挂载网络文件系统

网络文件系统是由网络附加存储服务器通过网络向多个主机提供的一种文件系统 , 而不是由块设备 ( 例如硬盘驱动器 ) 提供的。客户端通过特殊的文件系统协议和格式访问远程存储

Linux 中有两种主要协议可用访问网络文件系统 : NFS 和CIFS

1 )CIFS: 通用网络文件系统

CIFS 是针对 Microsoft Windows 操作系统的本地网络文件系统Linux 系统可以挂载和访问 CIFS 文件共享 , 如同常见的网络文件系统一样。

samba-client RPM 软件包所包含的 smbclient 实用程序可用来识别由 Windows 或Samba 文件服务器提供的 CIFS 共享

客户端:

1 通过samba-client方式共享

yum    install    samba-client    -y         ###安装samba-client###

smbclient    -L     //172.25.254.250         ###登入远程服务器172.25.254.250###

smbclient        //172.25.254.250/westos1   ###进入westos1###

put          anaconda-ks.cfg                 ###往westos1上传文件###

rm           anaconda-ks.cfg                 ###在westo1上删除文件###

过程如下:

[[email protected] ~]# smbclient -L //172.25.254.250    ###登入172.25.254.250

Enter root‘s password:

Domain=[MYGROUP] OS=[Unix] Server=[Samba 4.1.1]

Sharename       Type      Comment

---------       ----      -------

westos1         Disk      test share

westos2         Disk      test share

westos3         Disk      test share

westos4         Disk      test share

westos5         Disk      test share

westos6         Disk      test share

westos7         Disk      test share

westos8         Disk      test share

westos9         Disk      test share

westos10        Disk      test share

IPC$            IPC       IPC Service (Samba Server Version 4.1.1)

Domain=[MYGROUP] OS=[Unix] Server=[Samba 4.1.1]

Server               Comment

---------            -------

Workgroup            Master

---------            -------

[[email protected] ~]# smbclient //172.25.254.250/westos1   ###进入westos1###

Enter root‘s password:

Domain=[MYGROUP] OS=[Unix] Server=[Samba 4.1.1]

smb: \> ls                                  ###查看远程服务器的文件###

.                                   D        0  Sun Apr 30 01:36:27 2017

..                                  D        0  Wed Dec  2 20:43:01 2015

file                                A       52  Sun Apr 30 01:35:24 2017

userfile                            A       19  Sun Apr 30 01:35:25 2017

anaconda-ks.cfg                     A     8619  Sun Apr 30 01:36:01 2017

file2                               N        0  Sun Apr 30 01:36:32 2017

file3                               N        0  Sun Apr 30 01:36:32 2017

file4                               N        0  Sun Apr 30 01:36:32 2017

file5                               N        0  Sun Apr 30 01:36:32 2017

file6                               N        0  Sun Apr 30 01:36:32 2017

file7                               N        0  Sun Apr 30 01:36:32 2017

file8                               N        0  Sun Apr 30 01:36:32 2017

file9                               N        0  Sun Apr 30 01:36:32 2017

file10                              N        0  Sun Apr 30 01:36:32 2017

fileeeeee                           N        0  Sun Apr 30 01:36:17 2017

100221120 blocks of size 1024. 21816820 blocks available

smb: \> !ls                                  ###查看本地文件###

anaconda-ks.cfg  etc    file.rej      Public

boot file    kernel-3.10.0-123.el7.x86_64.rpm  Templates

Desktop file1    lib      Videos

Documents file3    Music

Downloads file.path  Pictures

smb: \> put anaconda-ks.cfg

putting file anaconda-ks.cfg as \anaconda-ks.cfg (27.5 kb/s) (average 27.5 kb/s)

smb: \> rm anaconda-ks.cfg

NT_STATUS_NO_SUCH_FILE listing \anaconda-ks.cfg

smb: \> quit

2 通过挂载的方式共享

mount        //172.25.254.250/westos1   /mnt/    -o     username=guest ###以匿名用户身份将westos1挂载到本地的/mnt下###

touch /mnt/file3

过程如下:

[[email protected] ~]# mount //172.25.254.250/westos1

mount: can‘t find //172.25.254.250/westos1 in /etc/fstab

[[email protected] ~]# mount //172.25.254.250/westos1 -o username=guest

mount: can‘t find //172.25.254.250/westos1 in /etc/fstab

[[email protected] ~]# mount //172.25.254.250/westos1 /mnt/ -o username=guest

[[email protected] ~]# touch /mnt/file3

[[email protected] ~]# touch /mnt/filehello

3 开机自动挂载

vim      /etc/fstab

mount        -a          ###立即生效####

/etc/fstab下写的内容:

//172.25.254.250/westos1     /mnt   cifs    defaults,username=guest 0 0

过程如下:

[[email protected] ~]# umount /mnt/

[[email protected] ~]# vim /etc/fstab

[[email protected] ~]# mount -a           ###立即生效####

[[email protected] ~]# df

Filesystem               1K-blocks     Used Available Use% Mounted on

/dev/vda1                 10473900  4064104   6409796  39% /

devtmpfs                    922268        0    922268   0% /dev

tmpfs                       942660       84    942576   1% /dev/shm

tmpfs                       942660    17040    925620   2% /run

tmpfs                       942660        0    942660   0% /sys/fs/cgroup

/dev/sr0                   3654720  3654720         0 100% /run/media/root/RHEL-7.0 Server.x86_64

//172.25.254.250/westos1 100221120 78407756  21813364  79% /mnt

2)nfs:网络文件系统

NFS ( Network File System ) 是由 Linux 、 UNIX 及其他类似操作系统使用的互联网标准协议 , 可作为它们的本地网络文件系统。

它是一种活动扩展之下的开放标准 , 可支持本地 Linux 权限和文件系统功能

有两种方法用来确定由服务器提供的 NFS 导出 , 或叫做文件共享。如果服务器支持 NFSv3 或 NFSv2 , 您可以使用 showmount -e  server 命令来获取导出项列表。如果服务器支持 NFSv4 , 则可以将 / 导出项挂载到一个空目录并浏览所有导出文件系统的内容

1   访问 NFS 导出的命令

yum   install     nfs-utils     -y       ###安装nfs####

showmount    -e         ###登入###

mount                     ###挂载###

过程如下:

[[email protected] ~]# showmount -e 172.25.254.250   ###-e指连接到指定远程主机###

Export list for 172.25.254.250:

/nfsshare/nfs5 *

/nfsshare/nfs4 *

/nfsshare/nfs3 *

/nfsshare/nfs2 *

/nfsshare/nfs1 *

/content       172.25.0.0/255.255.0.0

[[email protected] ~]# mount 172.25.254.250:/nfsshare/nfs1 /mnt/   ###挂载,不用写客户端#####

[[email protected] ~]# cd /mnt/

[[email protected] mnt]# touch haha{1..10}

[[email protected] mnt]# ls

file1  haha10  haha3  haha5  haha7  haha9

haha1  haha2   haha4  haha6  haha8

[[email protected] mnt]# rm -fr *

2 开机自动挂载

vim      /etc/fstab

mount     -a

/etc/fstab 下写的内容:

172.25.254.250:/nfsshare/nfs1      /mnt      defaults    0    0

[[email protected] mnt]# cd

[[email protected] ~]# umount /mnt/

[[email protected] ~]# vim /etc/fstab

[[email protected] ~]# mount -a

[[email protected] ~]# df

Filesystem                    1K-blocks     Used Available Use% Mounted on

/dev/vda1                      10473900  4065080   6408820  39% /

devtmpfs                         922268        0    922268   0% /dev

tmpfs                            942660       84    942576   1% /dev/shm

tmpfs                            942660    17044    925616   2% /run

tmpfs                            942660        0    942660   0% /sys/fs/cgroup

/dev/sr0                        3654720  3654720         0 100% /run/media/root/RHEL-7.0 Server.x86_64

172.25.254.250:/nfsshare/nfs1 100221952 78411776  21810176  79% /mnt

[[email protected] ~]# touch file

[[email protected] ~]# touch file1

[[email protected] ~]# rm -fr  file  file1

二  自动挂载网络存储

使用 mount 命令 , 需要具有 root 用户权限以连接到网络共享。或者 , 我们可以向/etc/fstab 添加条目 , 但是随后与网络服务器的连接将始终处于活动状态。当某一程序试图访问网络共享中的文件时 , 可以将 automounter ( 或 autofs )服务配置为 “ 按需 ” 挂载网络共享。当共享不再使用并处于不活动状态一定时间以后 ,automounter 会对共享解除挂载

不活动状态的时间间隔默认为五分钟 , 但该时间间隔可在/etc/sysconfig/autofs 中进行全局更改

1  使用/net映射

/net,自挂载挂载点 , 然后手动配置间接自动挂载映射

默认情况下 , autofs 服务运行时 , 存在一个名为 /net 的特殊目录 , 但是该目录将显示为空,访问不存在的目录 /net/instructor.example.com 会使自动挂载器创建该子目录 , 并显示该 NFS 服务器上的所有NFS 导出项。这有时称为 “ 浏览 ” 共享

/net/instructor.example.com 之下的所有文件和目录停止使用且超时期满后 ,autofs 将共享解除挂载并删除空的 /net/instructor.example.com 子目录

yum   install   autofs.x86_64   -y      ###安装autofs.x86_64###

systemctl    start      autofs          ###开启服务###

cd     /net                            ###进入该目录下###

ls                                     ###查看发现为空###

cd          172.25.254.250             ###访问不存在的目录172.25.254.250

ls                                     ##查看发现有内容###

cd           nfsshare/nfs1

过程如下:

[[email protected] ~]# systemctl start autofs          ###开启服务###

[[email protected] ~]# cd /net/

[[email protected] net]# cd 172.25.254.250

[[email protected] 172.25.254.250]# ls

content  nfsshare

[[email protected] 172.25.254.250]# cd nfsshare/nfs1

[[email protected] nfs1]# ls

[[email protected] nfs1]# touch file1

[[email protected] nfs1]# ls

file1  file2

[[email protected] nfs1]# df                     ###查看是否挂载###

Filesystem                    1K-blocks     Used Available Use% Mounted on

/dev/vda1                      10473900  4070616   6403284  39% /

devtmpfs                         922268        0    922268   0% /dev

tmpfs                            942660       84    942576   1% /dev/shm

tmpfs                            942660    17052    925608   2% /run

tmpfs                            942660        0    942660   0% /sys/fs/cgroup

/dev/sr0                        3654720  3654720         0 100% /run/media/root/RHEL-7.0 Server.x86_64

172.25.254.250:/nfsshare/nfs1 100221952 78411776  21810176  79% /net/172.25.254.250/nfsshare/nfs1

[[email protected] nfs1]# cd

[[email protected] ~]# vim /etc/sysconfig/autofs     ###编辑挂载时间###

[[email protected] ~]# df

Filesystem                    1K-blocks     Used Available Use% Mounted on

/dev/vda1                      10473900  4070636   6403264  39% /

devtmpfs                         922268        0    922268   0% /dev

tmpfs                            942660       84    942576   1% /dev/shm

tmpfs                            942660    17052    925608   2% /run

tmpfs                            942660        0    942660   0% /sys/fs/cgroup

/dev/sr0                        3654720  3654720         0 100% /run/media/root/RHEL-7.0 Server.x86_64

172.25.254.250:/nfsshare/nfs1 100221952 78415872  21806080  79% /net/172.25.254.250/nfsshare/nfs1

2  间接映射

除了使用 /net 映射 , 系统管理员也可以手动配置任意目录, 以便访问时在其子目录上 “ 按需 ” 挂载特定共享

vim        /etc/auto.master

/etc/auto.master下写的内容:

最终挂载点的上一级目录           有最终挂载点的一个目录(例 :/etc/auto.westos)

vim       /etc/auto.westos(你在/etc/auto.master下编辑的最终挂载点目录)

编辑内容:

nfs1                   172.25.254.250:/nfsshare/nfs1       ###将远程服务器的共享目录挂载到nfs1,这样只能挂载nfs2###

*                172.25.254.250:/nfsshare/&        ###可以挂载任意目录###

systemctl   restart    autofs.service        ###重启服务###

过程如下:

[[email protected] ~]# mkdir /westos

[[email protected] ~]# vim /etc/auto.master

[[email protected] ~]# vim /etc/auto.westos

#####此时/etc/auto.westos下的内容为:nfs1            172.25.254.250:/nfsshare/nfs1####

[[email protected] ~]# systemctl restart autofs.service

[[email protected] ~]# cd /westos/

[[email protected] westos]# ls                       ###/westos下没有nfs1目录####

[[email protected] westos]# cd nfs1

[[email protected] nfs1]# pwd

/westos/nfs1

[[email protected] nfs1]# df

Filesystem                    1K-blocks     Used Available Use% Mounted on

/dev/vda1                      10473900  4070672   6403228  39% /

devtmpfs                         922268        0    922268   0% /dev

tmpfs                            942660       84    942576   1% /dev/shm

tmpfs                            942660    17052    925608   2% /run

tmpfs                            942660        0    942660   0% /sys/fs/cgroup

/dev/sr0                        3654720  3654720         0 100% /run/media/root/RHEL-7.0 Server.x86_64

172.25.254.250:/nfsshare/nfs1 100221952 78409728  21812224  79% /westos/nfs1

[[email protected] nfs1]# cd nfs2

-bash: cd: nfs2: No such file or directory

nfs1   172.25.254.250://nfsshare/nfs1

[[email protected] nfs1]# vim /etc/auto.westos

#####此时/etc/auto.westos下的内容为:*                172.25.254.250:/nfsshare/&#####

[[email protected] nfs1]# systemctl restart autofs.service

[[email protected] nfs1]# cd

[[email protected] ~]# cd /westos/nfs2

[[email protected] nfs2]# pwd

/westos/nfs2

[[email protected] nfs3]# df

Filesystem                    1K-blocks     Used Available Use% Mounted on

/dev/vda1                      10473900  4070672   6403228  39% /

devtmpfs                         922268        0    922268   0% /dev

tmpfs                            942660       84    942576   1% /dev/shm

tmpfs                            942660    17052    925608   2% /run

tmpfs                            942660        0    942660   0% /sys/fs/cgroup

/dev/sr0                        3654720  3654720         0 100% /run/media/root/RHEL-7.0 Server.x86_64

172.25.254.250:/nfsshare/nfs2 100221952 78409728  21812224  79% /westos/nfs2

时间: 2024-12-26 10:32:32

访问网络文件共享服务的相关文章

2-7.访问网络文件共享服务

##访问网络文件共享服务## ##学习目标 挂载网络共享 自动挂载网络共享 1.1##挂载网络文件系统 网络文件系统是由网络附加存储服务器通过网络向多个主机提供的一种文件系统,而不是由块设备(例如硬盘驱动器)提供的.客户端通过特殊的文件系统协议和格式访问远程存储 Linux 中有两种主要协议可用访问网络文件系统 : NFS 和CIFS . NFS ( Network File System ) 可看作是 Linux .UNIX 及其它类似操作系统的标准文件系统. CIFS( Comon Inte

第二章--(第七单元)--访问网络文件共享服务

一.什么是网络文件共享服务 网络文件系统是由网络附加存储服务器通过网络向多个主机提供的一种文件系统,而不是由快设备提供的.客户端通过特殊的文件系统协议和格式访问远程存储 二.通用网络文件系统 (适合跨系统使用) 1.安装samba服务 yum install samba-client -y 2.登录172.25.254.250服务器 smbclient -L //172.25.254.250 3.进入172.25.254.250服务器的westos1目录 smbclient //172.25.2

第二课unit7 访问网络文件共享服务

1.yum install samba-cilent.x86_64 -y  ##安装客户端 2.smblient -L //172.25.254.250   ##连接至服务器端 3.mount //172.25.254.250/westos1 /mnt -o username=guest  ##挂载文件 **在/etc/fstab设置开机挂载 4.yum install nfs-utils -y 5.showmount -e 172.25.254.250  ##识别挂载点 6.mount 172

Samba网络文件共享服务介绍

Samba网络文件共享服务 一.samba简介 Samba是一个能让Linux系统应用Microsoft网络通讯协议的软件,而SMB是Server Message Block的缩写,即为服务器消息块,SMB主要是作为Microsoft的网络通讯协议,后来Samba将SMB通信协议应用到了Linux系统上,就形成了现在的Samba软件.后来微软又把 SMB 改名为 CIFS(Common Internet File System),即公共 Internet 文件系统,并且加入了许多新的功能,这样一

基于网络文件共享服务的双机数据同步方法

前几年我开发过一个软件系统,为使用者提供7×24小时不间断的服务.为了确保服务质量,采用了双机热备的形式.双机系统能够正常工作的关键技术之一,就是主备机之间的数据同步.下面介绍的数据同步方法是以网络文件共享服务为基础实现的,简单易行,安全可靠,在当时时间紧.任务重.投资有限的情况下,应用效果比较理想. Windows网络文件共享服务 在Windows系统环境中,一台计算机可以作为服务器向局域网中的其它计算机(客户机)提供“文件共享服务”.通过这项服务,客户机用户能够像访问本地文件一样通过网络对服

第十章 网络文件共享服务之ftp

10.1 ftp介绍 网络文件共享服务主流的主要有三种,分别是ftp.nfs.samba.在上一章中我们已经了解了nfs,本章我们将来说说ftp. FTP是File Transfer Protocol(文件传输协议)的简称,用于internet上的控制文件的双向传输. FTP也是一个应用程序,基于不同的操作系统有不同的FTP应用程序,而所有这些应用程序都遵守同一种协议以传输文件. 在FTP的使用当中,用户经常遇到两种概念:下载和上传 下载(Download)文件就是从远程主机拷贝文件至自己的计算

linux网络文件共享服务的实现

LINUX网络文件共享服务 linux网络文件共享服务的实现: 应用层:ftp 内核:nfs (Sun) 跨平台:samba 一.vsftp实现文件共享 1,  概念: vsftpd :very secure FTP daemon,高安全性的 FTP 服务器. ftp: File Transfer Protocol文件传输协议:属于应用层协议,使用TCP端口: 21/tcp. FTP会话时包含了两个通道,一个叫控制通道,一个叫数据通道. 控制通道:控制通道是和FTP服务器进行沟通的通道,连接FT

企业级NFS网络文件共享服务

虚拟实验: 操作系统:CentOS release 6.8 (Final) 虚拟机:VMware 任务:NFS网络文件共享服务 默认是没有安装NFS软件包,NFS主要功能是通过网络让不同的主机系统之间可以共享文件或目录.NFS网络文件系统很像Windows系统的网络共享.安全功能.网络驱动映射,而互联网中小型网站集群架构后端常用NFS进行数据共享. NFS服务器IP: 192.168.222.130 NFS客户端IP1: 192.168.222.138 NFS客户端IP2:192.168.222

第九章 网络文件共享服务之NFS

9.1 nfs介绍 9.1.1 nfs特点 NFS(Network File System)即网络文件系统,是FreeBSD支持的文件系统中的一种,它允许网络中的计算机之间通过TCP/IP网络共享资源. 在NFS的应用中,本地NFS的客户端应用可以透明地读写位于远端NFS服务器上的文件,就像访问本地文件一样 nfs适用于Linux与Unix之间实现文件共享,不能实现Linux与Windows间的文件共享功能 nfs是运行在应用层的协议,其监听于2049/tcp和2049/udp套接字上 nfs服