yum安装syslog-ng3.6

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
云数据库 Tair(兼容Redis),内存型 2GB
简介:
  1. 下载yum源

    wget https://copr.fedoraproject.org/coprs/czanik/syslog-ng36epel6/repo/epel-6/czanik-syslog-ng36epel6-epel-6.repo

  2. yum -y install syslog-ng  syslog-ng-*

  3. yum -y install GeoIPGeoIP-devel libesmtp-devel libhiredis hiredis hiredis-devel json-c-devel flex flex-devel libjvm libdbi-devel libdbi-dbd-* glib byacc byacc-devel glib2  glib2-devel  libdbi  systemd  json-c  logrotate  libxslt 


  4. 1
    server端配置
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
@version:3.2
options {
     flush_lines (0);
     time_reopen (10);
     log_fifo_size (1000);
     chain_hostnames (off);
     use_dns (no);
     use_fqdn (no);
     create_dirs (no);
     keep_hostname (no);
};
source  s_sys {
     file  ( "/proc/kmsg"  program_override( "kernel: " ));
     unix-stream ( "/dev/log" );
     internal();
      udp(ip(0.0.0.0) port(514));
};
source  s_net { tcp(ip(0.0.0.0) port(514) max-connections(1000) ); udp ( ); };
destination d_cons {  file ( "/dev/console" ); };
destination d_mysql {  file ( "/data/${HOST}/${FACILITY}/${PROGRAM}.log"    create_dirs( yes ) ); };
destination d_mesg {  file ( "/var/log/messages" ); };
destination d_auth {  file ( "/var/log/secure" ); };
destination d_mail {  file ( "/var/log/maillog"  flush_lines(10)); };
destination d_spol {  file ( "/var/log/spooler" ); };
destination d_boot {  file ( "/var/log/boot.log" ); };
destination d_cron {  file ( "/var/log/cron" ); };
destination d_kern {  file ( "/var/log/kern" ); };
destination d_mlal { usertty( "*" ); };
destination d_redis {
     redis(
         host( "localhost" )
         port(6379)
     command ( "lpush" "${HOST}_${PROGRAM}" "${MESSAGE}" )
     );
};
destination d_sql {
   sql( type (mysql)
   host( "192.168.1.11" ) username( "d" ) password( "d" )
   database( "dd" )
   table( "messages" )
   columns( "datetime varchar(16)" "host varchar(32)" "program  varchar(20)" "pid varchar(8)" "message  varchar(200)" )
   values( "${R_DATE}" "${HOST}" "${PROGRAM}" "${PID}" "${MSGONLY}" )
   indexes( "datetime" "host" "program" "pid" "message" ));
};
filter f_kernel     { facility(kern); };
filter f_user     { facility(user); };
filter f_match     { host( "192.168.1." )};
filter f_default    { level(info..emerg) and
                         not (facility(mail)
                         or facility(authpriv) 
                         or facility( cron )); };
filter f_auth       { facility(authpriv); };
filter f_mail       { facility(mail); };
filter f_emergency  { level(emerg); };
filter f_news       { facility(uucp) or
                         (facility(news) 
                         and level(crit..emerg)); };
filter f_boot   { facility(local7); };
filter f_cron   { facility( cron ); };
log {  source (s_sys); filter(f_kernel); destination(d_kern); };
log {  source (s_net); filter(f_match); destination(d_mysql); };
log {  source (s_net); filter(f_match); destination(d_sql); };
log {  source (s_net); filter(f_match); destination(d_redis); };
log {  source (s_sys); filter(f_auth); destination(d_auth); };
log {  source (s_sys); filter(f_mail); destination(d_mail); };
log {  source (s_sys); filter(f_emergency); destination(d_mlal); };
log {  source (s_sys); filter(f_news); destination(d_spol); };
log {  source (s_sys); filter(f_boot); destination(d_boot); };
log {  source (s_sys); filter(f_cron); destination(d_cron); };
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
5 客户端配置
@version:3.2
options {
     flush_lines (0);
     time_reopen (10);
     log_fifo_size (1000);
     long_hostnames (off);
     use_dns (no);
     use_fqdn (no);
     create_dirs (no);
     keep_hostname ( yes );
};
source  s_sys {
     file  ( "/proc/kmsg"  program_override( "kernel: " ));
     unix-stream ( "/dev/log" );
     internal();
};
source  s_test_udp {
     file  ( "/var/lib/mysql/logs/mysql_slow.log"  program_override( "mysql_slowlog: " ));
};
source  s_messages_udp {
     file  ( "/var/log/messages"  program_override( "sys_messages: " ));
};
destination d_cons {  file ( "/dev/console" ); };
destination d_mesg {  file ( "/var/log/messages" ); };
destination d_auth {  file ( "/var/log/secure" ); };
destination d_mail {  file ( "/var/log/maillog"  flush_lines(10)); };
destination d_spol {  file ( "/var/log/spooler" ); };
destination d_boot {  file ( "/var/log/boot.log" ); };
destination d_cron {  file ( "/var/log/cron" ); };
destination d_kern {  file ( "/var/log/kern" ); };
destination d_mlal { usertty( "*" ); };
destination d_test_udp  { udp( "192.168.1.12"  port(514)); };
filter f_kernel     { facility(kern); };
filter f_Query_time     { level(info..emerg); };
filter f_default    { level(info..emerg) and
                         not (facility(mail)
                         or facility(authpriv) 
                         or facility( cron )); };
filter f_auth       { facility(authpriv); };
filter f_mail       { facility(mail); };
filter f_emergency  { level(emerg); };
filter f_news       { facility(uucp) or
                         (facility(news) 
                         and level(crit..emerg)); };
filter f_boot   { facility(local7); };
filter f_cron   { facility( cron ); };
log {  source (s_sys); filter(f_kernel); destination(d_kern); };
log {  source (s_messages_udp); filter(f_Query_time); destination(d_test_udp); };
log {  source (s_sys); filter(f_default); destination(d_mesg); };
log {  source (s_sys); filter(f_auth); destination(d_auth); };
log {  source (s_sys); filter(f_mail); destination(d_mail); };
log {  source (s_sys); filter(f_emergency); destination(d_mlal); };
log {  source (s_sys); filter(f_news); destination(d_spol); };
log {  source (s_sys); filter(f_boot); destination(d_boot); };
log {  source (s_sys); filter(f_cron); destination(d_cron); };


本文转自   tianshuai369   51CTO博客,原文链接:http://blog.51cto.com/kkkkkk/1717889

相关实践学习
基于Redis实现在线游戏积分排行榜
本场景将介绍如何基于Redis数据库实现在线游戏中的游戏玩家积分排行榜功能。
云数据库 Redis 版使用教程
云数据库Redis版是兼容Redis协议标准的、提供持久化的内存数据库服务,基于高可靠双机热备架构及可无缝扩展的集群架构,满足高读写性能场景及容量需弹性变配的业务需求。 产品详情:https://www.aliyun.com/product/kvstore     ------------------------------------------------------------------------- 阿里云数据库体验:数据库上云实战 开发者云会免费提供一台带自建MySQL的源数据库 ECS 实例和一台目标数据库 RDS实例。跟着指引,您可以一步步实现将ECS自建数据库迁移到目标数据库RDS。 点击下方链接,领取免费ECS&RDS资源,30分钟完成数据库上云实战!https://developer.aliyun.com/adc/scenario/51eefbd1894e42f6bb9acacadd3f9121?spm=a2c6h.13788135.J_3257954370.9.4ba85f24utseFl
相关文章
|
2月前
|
存储 缓存 Linux
【Linux】另一种基于rpm安装yum的方式
通过本文的方法,您可以在离线环境中使用RPM包安装YUM并进行必要的配置。这种方法适用于无法直接访问互联网的服务器或需要严格控制软件源的环境。通过配置本地YUM仓库,确保了软件包的安装和更新可以顺利进行。希望本文能够为您在特定环境中部署YUM提供实用的指导。
259 0
|
7月前
yum 可以安装rpm包
【6月更文挑战第18天】yum 可以安装rpm包
730 0
|
4月前
|
关系型数据库 MySQL Linux
Linux 安装 mysql【使用yum源进行安装】
这篇文章介绍了在Linux系统中使用yum源安装MySQL数据库的步骤,包括配置yum源、安装MySQL服务、启动服务以及修改root用户的默认密码。
Linux 安装 mysql【使用yum源进行安装】
|
3月前
|
Unix Linux Go
Linux 使用Yum安装Go和配置环境
Linux 使用Yum安装Go和配置环境
|
5月前
|
关系型数据库 MySQL Linux
在CentOS上使用yum安装与使用MySQL
在CentOS操作系统上使用yum包管理器安装和配置MySQL数据库的详细步骤,包括下载MySQL的yum源配置、安装MySQL服务、启动和停止服务、设置开机自启动、获取临时密码、修改root用户密码、授权用户以及处理相关问题。同时,文章还包含了一些操作的截图,帮助用户更直观地理解安装和配置过程。
1481 0
在CentOS上使用yum安装与使用MySQL
|
5月前
|
Oracle Java 关系型数据库
yum安装指定版本的openJDK
yum安装指定版本的openJDK
|
5月前
|
Web App开发 缓存 Ubuntu
Linux中yum、rpm、apt-get、wget的区别,yum、rpm、apt-get常用命令,CentOS、Ubuntu中安装wget
Linux中yum、rpm、apt-get、wget的区别,yum、rpm、apt-get常用命令,CentOS、Ubuntu中安装wget
263 11
|
5月前
|
网络协议 Linux
CentOS7 yum安装报错“Could not resolve host: mirrorlist.centos.org;"之解决办法(换源)
CentOS7 yum安装报错“Could not resolve host: mirrorlist.centos.org; Name or service not known“之解决办法(换源)
|
6月前
|
SQL Python
你需要在你的系统上安装`sqlmap`。这通常可以通过下载其源代码并编译,或者使用包管理器(如`apt`、`yum`或`pip`,但请注意,`pip`通常不直接提供`sqlmap`)来完成。
你需要在你的系统上安装`sqlmap`。这通常可以通过下载其源代码并编译,或者使用包管理器(如`apt`、`yum`或`pip`,但请注意,`pip`通常不直接提供`sqlmap`)来完成。
|
5月前
|
Linux Docker 容器
在CentOS操作系统上使用yum安装/使用/卸载Docker容器引擎
在CentOS操作系统上安装、配置、使用和卸载Docker容器引擎的详细步骤,包括配置Docker镜像加速的方法。
530 0