2016-11-05实战-配置远程服务器,实现日志集中管理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2016-11-05实战-配置远程服务器,实现日志集中管理相关的知识,希望对你有一定的参考价值。
server:192.168.1.123
client:192.168.1.132
1.server配置
1)编辑 /etc/rsyslog.conf
s2)
2)重启rsyslog服务
systemctl restart rsyslog
3)查看服务监听的状态
netstat -anlpt| grep 514
2.client配置
1)编辑etc/rsyslog.conf
说明:
*.* 所有类别和级别的日志
@@192.168.1.63:514 服务端的IP:端口
2)重启rsyslog 服务
systemctl restart rsyslog
3.服务端验证
1)关闭防火墙
2)server端,执行监控
tail -f /var/log/messages
3)client端,执行一些产生日志的操作。如atd服务重启等
systemctl restart atd
systemctl status firewalld.service
以上是关于2016-11-05实战-配置远程服务器,实现日志集中管理的主要内容,如果未能解决你的问题,请参考以下文章
#yyds干货盘点# 云服务器的CDN域名的远程鉴权配置,基于 Python
Springboot-RestTemplate调用服务实战记录
Linux下配置jupyter notebook远程访问实战:配置Jupyter的连接密码启动jupyter服务远程访问jupyter(关闭防火墙)