Linux NFS文件服务器安装与配置简述

某单位需要配置 NFS 服务器,为同步图片文件。

主机名:nfs.local,test.local

IP地址:192.168.3.15、192.168.3.18

2. 实验环境

2.1. 操作系统

# cat /etc/RedHat-release 

Red Hat Enterprise Linux Server release 6.5 (Santiago)

# uname -a

Linux localhost.localdomain 2.6.32-431.el6.x86_64 #1 SMP Sun Nov 10 22:19:54 EST 2013 x86_64 x86_64 x86_64 GNU/Linux

2.2. 服务器基本配置

修改 IP 地址。(注意:根据您的实现环境进行配置)

# vi /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0

TYPE=Ethernet

ONBOOT=yes

NM_CONTROLLED=yes

BOOTPROTO=static

IPADDR=192.168.3.15

NETMASK=255.255.255.0

GATEWAY=192.168.3.1

修改主机名

# vi /etc/sysconfig/network

NETWORKING=yes

#HOSTNAME=localhost.localdomain

HOSTNAME=nfs.local

# service network restart

为了方便实验,将防火墙关闭。

# service iptables stop

# chkconfig iptables off

同时关闭 selinux。

# vi /etc/sysconfig/selinux

# This file controls the state of SELinux on the system.

# SELINUX= can take one of these three values:

# enforcing - SELinux security policy is enforced.

# permissive - SELinux prints warnings instead of enforcing.

# disabled - No SELinux policy is loaded.

#SELINUX=enforcing

SELINUX=disabled

# SELINUXTYPE= can take one of these two values:

# targeted - Targeted processes are protected,

# mls - Multi Level Security protection.

SELINUXTYPE=targeted

重新启动以便生效。

reboot或init 6

3. NFS服务器安装与配置

3.1. 安装NFS服务器组件

3.1.1.通过YUM来进行安装

通过 YUM 来解决包的相关性。

# yum -y install nfs-utils

很方便地就安装完毕了

3.2. 启动NFS服务

NFS 依赖rpcbind服务,设置为其自动启动

# chkconfig rpcbind on

# chkconfig nfs on

# service rpcbind start

# service nfs start

Starting NFS services: [ OK ]

Starting NFS quotas: [ OK ]

Starting NFS mountd: [ OK ]

Starting NFS daemon: [ OK ]

在日志文件/var/log/messages 中,会看到如下信息:

rpc.mountd[1797]: Version 1.2.3 starting

kernel: NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state

recovery directory

kernel: NFSD: starting 90-second grace period

3.3. 配置NFS服务器(192.168.3.15)

查看当前共享的 NFS 信息

# showmount -e localhost

Export list for localhost: 空白无输出

配置 export 文件

# vi /etc/exports

添加如下内容,注意选项中逗号之间没有空格!

/home/tomcat/image/webapps/static/resources  *(rw,no_root_squash,no_all_squash,sync)  

保存退出

exportfs -r            //重新挂载/etc/exports中的设置

service rpcbind restart
service nfs restart

3.3.1. 服务端验证NFS共享:

[root@localhost ~]# showmount -e

Export list for localhost.localdomain:

/home/tomcat/image/webapps/static/resources *

注:正常能显示出上面设置的共享目录,如果报如下错误:

clnt_create: RPC: Program not registered

说明 rpcbind服务与NFS服务 启动顺序不对,把他俩都停了,重新启动,先启动rpcbind服务再启动nfs服务;

3.4. 配置NFS客户机(192.168.3.18)

NFS 客户机也需要安装 nfs-utils 包。

# yum -y install nfs-utils

[root@localhost ~]# showmount -e 192.168.3.15

Export list for 192.168.3.15:

/home/tomcat/image/webapps/static/resources *

3.5. 客户端基本配置

修改 IP 地址。(注意:根据您的实现环境进行配置)

# vi /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0

TYPE=Ethernet

ONBOOT=yes

NM_CONTROLLED=yes

BOOTPROTO=static

IPADDR=192.168.3.18

NETMASK=255.255.255.0

GATEWAY=192.168.3.1

修改主机名

# vi /etc/sysconfig/network

NETWORKING=yes

#HOSTNAME=localhost.localdomain

HOSTNAME=test.local

# service network restart

为了方便实验,将防火墙、selinux关闭。

3.6. 启动服务

启动rpcbind服务,设置为其自动启动

# chkconfig rpcbind on

# service rpcbind start

客户端rpcbind服务一定要启动,nfs可以不用启动

3.7. 设置启动自动挂载(192.168.3.18)

[root@localhost ~]# vi /etc/fstab

新增

192.168.3.15:/home/tomcat/image/webapps/static/resources /home/tomcat/image/webapps/static/resources          nfs    defaults        0 0

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/c28ff01d2cc63d63a41e958430678e23.html