“Nfs实现日志集中查看”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
(创建页面,内容为“=* 起因= 程序哥要登录一台机器看所有javalog 但是有些机器跑的程序日志名是一样的 于是只能是 多个 nfs server 一个client 然后…”)
 
第19行: 第19行:
  
 
exportfs -arv</pre>
 
exportfs -arv</pre>
 +
 +
 +
=troubleshooting=
 +
==on nfs server==
 +
<pre>
 +
# 不然会 showmount -e 没东西 
 +
mount  172.31.26.183:/data/logs/hello/  /data/logs/java04/hello/
 +
mount.nfs: access denied by server while mounting 172.31.26.183:/data/logs/hello/</pre>

2019年10月24日 (四) 09:44的版本

* 起因

程序哥要登录一台机器看所有javalog 但是有些机器跑的程序日志名是一样的 于是只能是 多个 nfs server 一个client 然后登录client机器就可以查看6台机的log

client 172.31.27.83 server 172.31.25.239,java03 ,04,05,06 加上01自己 一共6台机器

* server install

** java2

yum -y install nfs-utils rpcbind
firewall-cmd --add-service=nfs --permanent --zone=public


systemctl enable nfs-server
systemctl start  nfs-server
# nfs client ip 
echo "/data/logs/hello/ 172.31.27.83(rw,sync,no_root_squash)" >> /etc/exports

systemctl  restart  rpcbind

exportfs -arv


troubleshooting

on nfs server

# 不然会 showmount -e 没东西  
mount  172.31.26.183:/data/logs/hello/  /data/logs/java04/hello/
mount.nfs: access denied by server while mounting 172.31.26.183:/data/logs/hello/