0℃
2021年10月28日
⁄ NFS
⁄ 被围观 6,147次+
一、防火墙配置
CentOS 7.x默认使用的是firewall作为防火墙,这里改为iptables防火墙。
1、关闭firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
systemctl mask firewalld
systemctl stop firewalld
yum remove firewalld
2、安装iptables防火墙
yum install iptables-services #安装
vi /etc/sysconfig/iptables #编辑防火墙配置文件
# sample configuration for iptables service
# you can edit this manually or use system-config-f...
CentOS, nfs阅读全文
1℃
2012年05月03日
⁄ NFS
⁄ 被围观 21,328次+
说明:
NFS服务器:
操作系统:CentOS 5.5
IP:192.168.21.160
nfs网络文件服务器共享目录:/data/osyunwei
目录所有者:www(说明:www为nginx运行账号)
chown www.www -R /data/osyunwei
目录权限:700
chmod 700 -R /data/osyunwei
NFS客户端:
操作系统:CentOS 5.5
IP:192.168.21.169
把NFS服务器上的目录/data/osyunwei挂载到本地目录/data/osyunwei中
本地目录/data/osyunwei所有者:www(说明:www为nginx运行账号)
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链...
CentOS阅读全文