zoukankan      html  css  js  c++  java
  • Nginx服务

    1.Nginx服务器的安装

    # yum install epel-release -y

    #yum install nginx -y

    2.nginx服务的配置

    # vim /etc/nginx/nginx.conf

    3.修改location配置,直接访问a.txt

    4.防火钱跟开启nginx服务

    # systemctl start nginx ----------启动nginx服务

    # systemctl restart nginx--------重启

    #systemctl reload nginx---------重新加载nginx服务

    #systemctl start firewalld---------关闭防火墙

    #systemctl disable firewalld------开机关闭防火墙服务

    二.nfs服务

    1.二进制安装nfs

    # yum install rpcbind nfs-untils -y

    2.作为共享存储挂载在三台web的网站根目录下

    克隆三台web服务器

    代理服务器上配置nginx.conf

    #vim /etc/nginx/nginx.conf

    #systemctl reload ngin

    效果:

    3实现,在任意一台web上修改的结果,其余两台都可以看到

     代理服务器,3台web服务器均安装

    #yum install rpcbind nfs-untils -y

    #cat /etc/exports

    修改nfs服务端的配置  /etc/exports

     #vim /etc/exports

    /share 192.168.16.0/24(rw,sync,fsid=0)

    服务端新建/share

    客户端showmount -e +服务端ip

    客户端mount -t nfs 192.168.16.197:/share /var/www/html

    挂载完成后,修改服务端、share权限

    #chmod -R o+rwx /share

  • 相关阅读:
    算法
    Unity-UI
    lua-设计与实现 1类型
    Unity-Cache Server
    lua-高效编程-总结
    算法-JPS寻路设计思想
    数据结构- List、Dictionary
    数据结构-二叉树、堆
    VSCode更好用
    功能快捷键
  • 原文地址:https://www.cnblogs.com/amiee-785563694/p/6592424.html
Copyright © 2011-2022 走看看