思想
人能有成就和拿高薪的前提,有三个维度:
太阳系的行星:9大行星
冥王星 猜出来的。 万有引力定律
实践===》总结==》应用于实践===》总结(形成了你的思维理论)
思维理论===》思考人和事===》指导你的行为。
勤奋努力,善于总结 ————老男孩老师逆袭8个字
找工作如何快速拿到Offer? 可有理论?
如何快速搞定心仪的女朋友? 可有理论?
人能有成就和拿高薪的前提,有三个维度:
1)学历:社会分层利器
2)商数:3Q多元智慧理论
3)思维:思想思维理论*****
小胜靠智,大胜靠德。哲学里星星
天时、地利、人和,其实就是时空角理论,古人几千年就已经有了
只不过老男孩老师把他转给你们。
学一门技能可以解决10个问题;
持续学习,持续掌握最新的核心技能。
学一个方法可以解决100个问题;
学习一个理论可以解决1000个问题;
一条哲学可以解决所有的问题;
——老男孩
人类思维层次四个维度:
技能
方法
理论:放置四海皆准,
时间:过去、现在、未来都适合。
空间:国内、国外都适合。
角度:你自己、同事、老板、追女朋友、找工作、对待下属都适合。
是不是打破了时空角理论了?
当然没有,因为:人品、态度、能力、价值理论,是对人才更有有意义。
哲学:
万事万物的运行规律,作为人何为正确?
追女朋友、找工作,要有正确的价值观。
做正确的事情。
root _squash
noroot _squash
all_squash 不管客户端什么用户,到服务端都 是nfsnobody
anonuid
匿名用户的UID
anongid
匿名用户的GID
图
cat >>/etc/sysctl.conf<<EOF
net.core.wmem_default = 8388608
net.core.rmem_default = 8388608
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
EOF
sysctl -p
实时复制inotify/sersync
安装 服务端
1、服务器端和客户端都要安装:
yum install nfs-utils rpcbind -y 安装这几个包
rpm -qa nfs-utils rpcbind 查看哪两个包
2、启动RPC
[root@nfs01 ~]# systemctl start rpcbind.service 启动active (running)
[root@nfs01 ~]# systemctl enable rpcbind.service 启动enable
[root@nfs01 ~]# systemctl status rpcbind.service 查看
[root@nfs01 ~]# rpcinfo -p 127.0.0.1 看看有没有注册的端口
100000 4 tcp 111 portmapper
3、启动NFS
[root@nfs01 ~]# systemctl start nfs 启动
[root@nfs01 ~]# systemctl enable nfs 启动enable
[root@nfs01 ~]# systemctl status nfs 查
[root@nfs01 ~]# rpcinfo -p 127.0.0.1
100000 4 tcp 111 portmapper 看看有没有注册的端口
100003 3 tcp 2049 nfs
[root@nfs01 ~]# netstat -lntup|egrep "rpc|nfs" 查看网络协议 并过滤出"rpc|nfs"的行
tcp 0 0 0.0.0.0:20048 0.0.0.0:* LISTEN 9516/rpc.mountd
4、NFS配置文件 /etc/exports
[root@nfs01 ~]# vim /etc/exports 编辑配置文件
/data 172.16.1.0/24(rw,sync)
共享目录 主机IP或网段 可读写,写到磁盘算完成
[root@nfs01 ~]# tail -1 /etc/exports 查看配置文件
/data 172.16.1.0/24(rw,sync)
共享目录 主机IP或网段 可读写,写到磁盘算完成
5、
[root@nfs01 ~]# mkdir -p /data 没有就创建个
[root@nfs01 ~]# ls -ld /data 查看
drwxr-xr-x 2 root root 51 4月 16 10:24 /data
6、NFS默认用户nfsnobody (可以不用这)
[root@nfs01 ~]# grep nfsno /etc/passwd 查看找这个行
[root@nfs01 ~]# chown -R nfsnobody.nfsnobody /data 把用户用及用户组改成nfsnobody
[root@nfs01 ~]# ls -ld /data 查看
drwxr-xr-x 2 nfsnobody nfsnobody 51 4月 16 10:24 /data
7、重启NFS
[root@nfs01 ~]# systemctl reload nfs #《==生产场景必须要实现平滑重启。
[root@nfs01 ~]# exportfs -r 平滑重启
上述二者等价,选一个即可。
[root@nfs01 ~]# showmount -e 172.16.1.31 表示出自己的挂载点IP
Export list for 172.16.1.31:
/data 172.16.1.0/24 #《==看到共享的目录了
8、服务单本地挂载:
[root@nfs01 ~]# mount -t nfs 172.16.1.31:/data /mnt 在自己/data挂上/mnt挂载点
[root@nfs01 ~]# df -h 查看
web01挂载
1)安装
yum install nfs-utils rpcbind -y
rpm -qa nfs-utils rpcbind
2)启动
[root@web01 ~]# systemctl start rpcbind 启动RPC
[root@web01 ~]# systemctl enable rpcbind 启动RPC
[root@web01 ~]# netstat -lntup|grep rpcbind 查看网络协议 并过滤出rpcbind的行
[root@web01 ~]# ps -ef|grep rpcbind 查看进程 并过滤出rpcbind
3)查看NFS服务器提供的共享目录
[root@web01 ~]# showmount -e 172.16.1.31 显出NFS服务器提供的共享目录IP
Export list for 172.16.1.31:
/data 172.16.1.0/24 共享目录IP
挂载测试
[root@web01 ~]# mount -t nfs 172.16.1.31:/data /mnt 挂
[root@web01 ~]# df -h
[root@web01 ~]# touch /mnt/oldgirl.txt 创
[root@web01 ~]# ls /mnt/ 看
oldboy.txt oldgirl.txt 查有没
2.实现开机自动挂载
[root@web01 ~]# vim /etc/fstab
172.16.1.31:/backup /mnt nfs defaults 0 0
[root@web01 ~]# systemctl start remote-fs.target
[root@web01 ~]# systemctl status remote-fs.target
NFS服务器没开这个也可以开启看下面
172.16.1.31:/backup /mnt nfs defaults,soft 0 0