您当前的位置:首页 > 电脑百科 > 站长技术 > 服务器

Linux安装nfs文件服务器

时间:2020-03-05 13:57:34  来源:  作者:

服务端

# 1、安装nfs-utils 和 rpcbind

# yum -y install nfs-utils rpcbind

 

# 2、创建要共享的目录(可能要一步一步的创建)

# mkdir /data/report/nfs

 

# 3、修改/etc/exports 10.111.74.247 不是本机ip,是要共享的ip,对谁开放就是谁

# /data/report/nfs 10.111.74.247(rw,no_root_squash)

#参数no_root_squash的其作用是:NFS客户端使用共享目录的用户,如果是root 的话,所有的操作均在服务器端映射为root用户,拥有共享目录的root权限!

 

# 4、开启nfs

# systemctl start nfs

 

# 5、如果报错,可能要先开启rpcbind

# systemctl start rpcbind

 

# 6、查看共享目录

# showmount -e localhost

 

# 7、设置开机自启动

# systemctl enable rpcbind

# systemctl enable nfs-server.server

客户端

# 客户端安装在另外一台机器上,就是对谁开放的那个谁

 

# 1、安装nfs-utils

# yum -y intall nfs-utils

 

# 2、显示服务端可挂载的目录

# showmount -e 10.111.74.248

# 这个IP是服务端的IP

 

# 3、将服务端的/data/report/nfs 挂载到本地的 /data/report/nfs。实际上是互相共享,无论修改哪一边,另外一边也会相应的被修改

# mount -t nfs 10.111.74.248:/data/report/nfs /data/report/nfs

 

# 设置开机自动挂载

# vi /etc/fstab

 

# 这个IP是服务端的IP

# 10.111.74.248:/data/report/nfs/ /data/report/nfs/ nfs defaults,_rnetdev 1 1

文件服务器

# 一、安装PCRE

#

# 文档:菜鸟教程 https://www.runoob.com/linux/Nginx-install-setup.html

 

# 安装编译工具及库文件

# yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel

 

# 首先要安装 PCRE PCRE 作用是让 Nginx 支持 Rewrite 功能。

 

# cd /usr/local/src/

# wget http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz

 

# 解压

# tar zxvf pcre-8.35.tar.gz

 

# 进入安装包目录

# cd pcre-8.35

# ./configure

# make && make install

 

# 查看pcre版本

# pcre-config --version

 

# 二、安装Nginx

# cd /usr/local/src/

# wget http://nginx.org/download/nginx-1.6.2.tar.gz

# tar zxvf nginx-1.6.2.tar.gz

 

# 进入安装包目录

# cd nginx-1.6.2

 

# 编译安装

# ./configure --prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.35

# make

# make install

 

# 查看nginx版本

# /usr/local/webserver/nginx/sbin/nginx -v

 

# 修改配置文件

vi /etc/nginx/conf.d/default.conf

 

# 内容

server {

listen 80;

server_name localhost;

#charset koi8-r;

#access_log /var/log/nginx/host.access.log main;

location / {

root /usr/share/nginx/html;

index index.html index.htm;

}

# 添加这个

location ~ ^/report/ {

root /data;

#autoindex on;

}

# 添加这个

location ^~/opt/{

alias /data/report/nfs/opt/;

autoindex on;

}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html

#

error_page 500 502 503 504 /50x.html;

location = /50x.html {

root /usr/share/nginx/html;

}

# proxy the php scripts to Apache listening on 127.0.0.1:80

#

#location ~ .php$ {

# proxy_pass http://127.0.0.1;

#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

#

#location ~ .php$ {

# root html;

# fastcgi_pass 127.0.0.1:9000;

# fastcgi_index index.php;

# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;

# include fastcgi_params;

#}

# deny access to .htaccess files, if Apache's document root

# concurs with nginx's one

#

#location ~ /.ht {

# deny all;

#}

# }

 

# 就可以以ip的形式访问这个目录下的文件

# 例如: http://10.111.74.248/data/report/nfs/xxx/xxx.txt

# 例如: http://10.111.74.248:80/data/report/nfs/xxx/xxx.txt

 

# 非80 端口号监听

server {

listen 8080;

server_name localhost;

location / {

proxy_pass http://192.168.1.100:8081;

proxy_set_header Host $host:8080;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

}

}

 

Linux安装nfs文件服务器


Tags:nfs文件服务器   点击:()  评论:()
声明:本站部分内容及图片来自互联网,转载是出于传递更多信息之目的,内容观点仅代表作者本人,如有任何标注错误或版权侵犯请与我们联系(Email:2595517585@qq.com),我们将及时更正、删除,谢谢。
▌相关推荐
服务端# 1、安装nfs-utils 和 rpcbind# yum -y install nfs-utils rpcbind # 2、创建要共享的目录(可能要一步一步的创建)# mkdir /data/report/nfs # 3、修改/etc/exports...【详细内容】
2020-03-05  Tags: nfs文件服务器  点击:(44)  评论:(0)  加入收藏
▌简易百科推荐
阿里云镜像源地址及安装网站地址https://developer.aliyun.com/mirror/centos?spm=a2c6h.13651102.0.0.3e221b111kK44P更新源之前把之前的国外的镜像先备份一下 切换到yumcd...【详细内容】
2021-12-27  干程序那些事    Tags:CentOS7镜像   点击:(1)  评论:(0)  加入收藏
前言在实现TCP长连接功能中,客户端断线重连是一个很常见的问题,当我们使用netty实现断线重连时,是否考虑过如下几个问题: 如何监听到客户端和服务端连接断开 ? 如何实现断线后重...【详细内容】
2021-12-24  程序猿阿嘴  CSDN  Tags:Netty   点击:(12)  评论:(0)  加入收藏
一. 配置yum源在目录 /etc/yum.repos.d/ 下新建文件 google-chrome.repovim /etc/yum.repos.d/google-chrome.repo按i进入编辑模式写入如下内容:[google-chrome]name=googl...【详细内容】
2021-12-23  有云转晴    Tags:chrome   点击:(7)  评论:(0)  加入收藏
一. HTTP gzip压缩,概述 request header中声明Accept-Encoding : gzip,告知服务器客户端接受gzip的数据 response body,同时加入以下header:Content-Encoding: gzip:表明bo...【详细内容】
2021-12-22  java乐园    Tags:gzip压缩   点击:(9)  评论:(0)  加入收藏
yum -y install gcc automake autoconf libtool makeadduser testpasswd testmkdir /tmp/exploitln -s /usr/bin/ping /tmp/exploit/targetexec 3< /tmp/exploit/targetls -...【详细内容】
2021-12-22  SofM    Tags:Centos7   点击:(7)  评论:(0)  加入收藏
Windows操作系统和Linux操作系统有何区别?Windows操作系统:需支付版权费用,(华为云已购买正版版权,在华为云购买云服务器的用户安装系统时无需额外付费),界面化的操作系统对用户使...【详细内容】
2021-12-21  卷毛琴姨    Tags:云服务器   点击:(6)  评论:(0)  加入收藏
参考资料:Hive3.1.2安装指南_厦大数据库实验室博客Hive学习(一) 安装 环境:CentOS 7 + Hadoop3.2 + Hive3.1 - 一个人、一座城 - 博客园1.安装hive1.1下载地址hive镜像路径 ht...【详细内容】
2021-12-20  zebra-08    Tags:Hive   点击:(9)  评论:(0)  加入收藏
以下是服务器安全加固的步骤,本文以腾讯云的CentOS7.7版本为例来介绍,如果你使用的是秘钥登录服务器1-5步骤可以跳过。1、设置复杂密码服务器设置大写、小写、特殊字符、数字...【详细内容】
2021-12-20  网安人    Tags:服务器   点击:(7)  评论:(0)  加入收藏
项目中,遇到了一个问题,就是PDF等文档不能够在线预览,预览时会报错。错误描述浏览器的console中,显示如下错误:nginx代理服务报Mixed Content: The page at ******** was loaded...【详细内容】
2021-12-17  mdong    Tags:Nginx   点击:(7)  评论:(0)  加入收藏
转自: https://kermsite.com/p/wt-ssh/由于格式问题,部分链接、表格可能会失效,若失效请访问原文密码登录 以及 通过密钥实现免密码登录Dec 15, 2021阅读时长: 6 分钟简介Windo...【详细内容】
2021-12-17  LaLiLi    Tags:SSH连接   点击:(16)  评论:(0)  加入收藏
相关文章
    无相关信息
最新更新
栏目热门
栏目头条