查看CentOS版本方法
有以下命令可以查看:
# lsb_release -a
exports文件:
/data/tomcat-/webapps/ROOT 10.0.0.1/8(insecure,rw,sync)
/data/tomcat-/webapps/ROOT 10.0.0.1/8(insecure,rw,sync)
常用
/etc/init.d/nfs start
/etc/init.d/nfs stop
/etc/init.d/nfs reload
service nfs status
exportfs -r
mount
umount 路径
http://blog.chinaunix.net/uid-26284318-id-3111651.html
NFS的安装配置:
centos 5 :
yum install nfs-utils portmap
centos 6 :
yum install nfs-utils rpcbind
本节是使用centos 6的配置过程:
设备:两台 centos6 OS 安装的时候选择的是"Basic Server"软件配置包。
首先,让两台机器都安装NFS的 软件包,如下显示的是服务器端:
[root@roothomes /home]$ yum install nfs-utils rpcbind
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: centos.ustc.edu.cn
* extras: centos.ustc.edu.cn
* updates: centos.ustc.edu.cn
Setting up Install Process
Package rpcbind-0.2.0-8.el6.x86_64 already installed and latest version
Resolving Dependencies
--> Running transaction check
---> Package nfs-utils.x86_64 1:1.2.3-15.el6 set to be updated
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================
Package Arch Version Repository Size
================================================================================
Updating:
nfs-utils x86_64 1:1.2.3-15.el6 base 308 k
Transaction Summary
================================================================================
Install 0 Package(s)
Upgrade 1 Package(s)
Total download size: 308 k
Is this ok [y/N]: y
Downloading Packages:
nfs-utils-1.2.3-15.el6.x86_64.rpm | 308 kB 00:10
warning: rpmts_HdrFromFdno: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
base/gpgkey | 3.3 kB 00:00 ...
Importing GPG key 0xC105B9DE "CentOS-6 Key (CentOS 6 Official Signing Key) " from /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
Is this ok [y/N]: y
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Updating : 1:nfs-utils-1.2.3-15.el6.x86_64 1/2
Cleanup : 1:nfs-utils-1.2.2-7.el6.x86_64 2/2
Updated:
nfs-utils.x86_64 1:1.2.3-15.el6
Complete!
[root@roothomes /home]$
服务器端:
###(建立挂载的目录,并且挂载目录。)
[root@roothomes /etc]$ mkdir /opt/centos6
[root@roothomes /etc]$ cd /opt/centos6/
[root@roothomes /opt/centos6]$ mkdir thisISnfsFile
[root@roothomes /opt/centos6]$ ls
thisISnfsFile
[root@roothomes /etc]$ vi /etc/exports
[root@roothomes /opt/centos6]$ cat /etc/exports
/opt/centos6 192.168.1.0/24(ro,no_root_squash)
### 备注:/opt/centos6表示nfs共享的目录 192.168.1.0-192.168.1.254区间的IP可以访问,访问权限是自读,root 用户
###(启动对应的服务)
[root@roothomes /opt/centos6]$ chkconfig nfs on
[root@roothomes /opt/centos6]$ /etc/init.d/rpcbind start
[root@roothomes /opt/centos6]$ /etc/init.d/nfs start
Starting NFS services: [ OK ]
Starting NFS quotas: [ OK ]
Starting NFS daemon: [ OK ]
Starting NFS mountd: [ OK ]
[root@roothomes /opt/centos6]$ service iptables stop
iptables: Flushing firewall rules: [ OK ]
iptables: Setting chains to policy ACCEPT: filter [ OK ]
iptables: Unloading modules: [ OK ]
客户端:
[root@roothomes /home]$ yum install nfs-utils rpcbind
安装完毕!
[root@vmBS00 ~]# service iptables stop
iptables: Flushing firewall rules: [ OK ]
iptables: Setting chains to policy ACCEPT: filter [ OK ]
iptables: Unloading modules: [ OK ]
###查看是否能访问nfs服务
[root@vmBS00 ~]# showmount -e 192.168.1.75
Export list for 192.168.1.75:
/opt/centos6 192.168.1.0/24
[root@vmBS00 ~]# mkdir /opt/centos6
[root@vmBS00 ~]# mount -t nfs 192.168.1.75:/opt/centos6/ /opt/centos6/
[root@vmBS00 ~]# ls /opt/centos6/
thisISnfsFile
###配置开机自动挂载
[root@vmBS00 ~]# vi /etc/fstab
### 添加 #192.168.1.75:/opt/centos6/ /opt/centos6/ nfs nodev,ro,rsize=32768,wsize=32768 0 0
[root@vmBS00 ~]# init 6
[root@vmBS00 ~]#
login as: root
root@192.168.1.116's password:
Last login: Mon Mar 5 17:29:04 2012 from 192.168.1.23
[root@vmBS00 ~]# ls /opt/centos6/
thisISnfsFile
[root@vmBS00 ~]#
分享到:
相关推荐
这个"CentOS7 nfs离线安装包"显然包含了在没有互联网连接的情况下安装和配置NFS所需的所有软件包。 首先,让我们详细了解一下NFS的基本概念。NFS服务基于客户端-服务器架构,其中一台服务器(NFS服务器)暴露其文件...
在深入探讨CentOS NFS(Network File System)的配置细节前,我们先来简要了解NFS的基本概念。NFS是一种网络协议,允许一个系统在网络上共享目录和文件。通过使用NFS,用户和程序可以像访问本地文件一样访问远程系统...
这是描述在centos下进行nfs,网路共享文件系统的配置与搭建
6. **防火墙配置**:为了允许客户端通过NFS访问,需要配置CentOS的防火墙。使用`sudo firewall-cmd --permanent --add-service=nfs`开启NFS服务端口,然后重启防火墙`sudo systemctl restart firewalld`以应用更改。...
CentOS5_nfs安装与配置总结CentOS5_nfs安装与配置总结CentOS5_nfs安装与配置总结CentOS5_nfs安装与配置总结
Centos7 安装配置 NFS 服务和挂载 NFS(Network File System)是一种分布式文件系统协议,允许多台机器共享同一个文件系统。下面是 Centos7 安装配置 NFS 服务和挂载的详细步骤。 一、安装 NFS 服务器所需的软件包...
CentOS NIS+NFS 服务配置 CentOS NIS+NFS 服务配置是 Linux 系统中的一种常见配置,旨在实现账号信息管理和文件共享服务。该配置主要包括 NIS(Network Information Service)和 NFS(Network File System)两部分...
服务器环境:CentOS6.9 Linux 2.6.32-696.el6.x86_64 安装NFS服务 nfs客户端和服务端都只需要安装nfs-utils包即可,并且yum安装时会连带安装rpcbind服务 # yum -y install nfs-utils 开机启动 # chkconfig ...
Centos7 安装 NFS 服务以及防火墙配置 CentOS 7 安装 NFS 服务是指在 CentOS 7 操作系统中安装和配置 NFS 服务,以便实现文件共享和远程访问。NFS(Network File System)是 Sun Microsystems 公司开发的一种分布式...
CentOS下NFS服务器配置 NFS(Network File System)是一种基于RPC(Remote Procedure Call)的文件共享协议,允许不同的操作系统之间共享文件。CentOS下NFS服务器配置是指在CentOS操作系统中配置NFS服务器,以便与...
这通常是因为在NFS配置文件`/etc/exports`中的地址与权限之间有多余的空格导致的。解决方法很简单,只需移除这些空格,然后重启NFS服务即可。 通过以上步骤,您可以在CentOS环境下成功配置并测试NFS服务器。NFS是一...
本文详细介绍了如何在 CentOS 7.2 中安装和配置 NFS 服务器与客户端。通过以上步骤,可以实现多台机器之间高效地共享文件,同时降低了管理和维护成本。NFS 不仅适用于图片等静态文件的共享,还可以广泛应用于数据库...
在运维过程中,了解如何在CentOS 6上安装和配置NFS服务对于进行跨系统文件共享至关重要。通过熟练掌握这些步骤,你可以轻松地在多台Linux服务器之间实现高效的数据交换。记得在操作时遵循最佳实践,确保系统的安全性...
3. 修改NFS配置文件 vi /etc/exports 知识点2:NFS服务器的配置文件设置 在/etc/exports文件中,需要设置共享目录、允许方位的主机和访问权限设置。例如: /stor01 *(rw,sync,no_root_squash) 其中,/stor01是...
综上所述,CentOS 7 NFS环境搭建不仅仅是简单地安装和启动服务,它还包括了服务的详细配置、网络权限的设置、安全性考虑以及在客户端上的挂载和测试。而这些内容构成了NFS环境搭建的核心知识点。
CentOS7安装NFS服务器及配置.pdf
在CentOS操作系统上配置NFS服务,主要包括以下几个步骤: **一、安装NFS服务** 首先,我们需要检查系统是否已经安装了NFS相关的软件包,包括`nfs-utils`和`portmap`。在命令行中输入`rpm -q nfs-utils portmap`,...
【Samba+nfs 文件服务器...通过以上步骤,可以完成 CentOS 6.5 上 Samba 和 NFS 的安装与配置,实现跨平台的文件共享,从而满足混合集群中的文件存储需求。在实际部署中,需要根据具体网络环境和安全策略调整配置细节。
### CentOS 6 中搭建 NFS 共享存储服务器 #### 一、NFS 原理流程图 在本文档中,我们并未提供具体的NFS原理流程图,但NFS(Network File System)的工作原理大致如下: 1. **客户端发起请求**:当客户端需要访问...