You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
|
Feb
(2) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
(1) |
Jun
|
Jul
(4) |
Aug
|
Sep
(1) |
Oct
(1) |
Nov
|
Dec
|
2008 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2010 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Yao, Y. <yao...@cn...> - 2019-05-09 01:11:37
|
Hi Zabbix developers, Please tell me what is the current situation of patch mentioned above? And, I want to know whether patch can be submitted by sending email to the email address below. zab...@li... If not, could you tell me how to submit a patch? Thanks & Best Regards, Yanxu , yao ------------------------------- 富士通南大軟件技術有限公司(FNST) 開発本部システム事業部第一開発部 姚彦旭 Addr: 南京富士通南大軟件技術有限公司(FNST) 中国南京市雨花台区文竹路6号(210012) Mail: yao...@cn...<mailto:yao...@cn...> Tel: +00-86-25-86630566 内線:7998-9532 Fax: +00-86-25-83317685 From: Yao, Yanxu/姚 彦旭 Sent: Monday, April 22, 2019 4:20 PM To: 'zab...@li...' Cc: Wang, Tieshan/王 铁杉 Subject: [PATCH] maintenance is not runing at 0 seconds of every minute Hi Zabbix developers, In zabbix 4.x, maintenance function does not act at 0 seconds of every minute and executes every minute according to the start time of the timer process. To deal with this problem, we have made the following amendments. Index: timer.c =================================================================== --- timer.c (revision 16) +++ timer.c (revision 17) @@ -700,8 +700,11 @@ if (1 == process_num) { + /* Is it more than 0 seconds per minute */ + unsigned char time_past_0 = (int)sec % ZBX_TIMER_DELAY <= (int)maintenance_time % ZBX_TIMER_DELAY || sec - maintenance_time > ZBX_TIMER_DELAY; + /* start update process only when all timers have finished their updates */ - if (sec - maintenance_time >= ZBX_TIMER_DELAY && FAIL == zbx_dc_maintenance_check_update_flags()) + if ((0 == maintenance_time || 0 == (int)sec % ZBX_TIMER_DELAY || time_past_0 ) && FAIL == zbx_dc_maintenance_check_update_flags()) { zbx_setproctitle("%s #%d [%s, processing maintenances]", get_process_type_string(process_type), process_num, info); if there is change about maintenance of zabbix4.x , please modify the Zabbix Documentation(https://www.zabbix.com/documentation/4.0/manual/maintenance) as following: ------------------------------------------------------------------------------------------------------------- Timer processes are responsible for switching host status to/from maintenance at 0 seconds of every minute. ⇒Timer processes are responsible for switching host status to/from maintenance every minute since server is start. Thanks & Best Regards, Yanxu , yao |
From: Yao, Y. <yao...@cn...> - 2019-04-22 07:32:24
|
Hi Zabbix developers, In zabbix 4.x, maintenance function does not act at 0 seconds of every minute and executes every minute according to the start time of the timer process. To deal with this problem, we have made the following amendments. Index: timer.c =================================================================== --- timer.c (revision 16) +++ timer.c (revision 17) @@ -700,8 +700,11 @@ if (1 == process_num) { + /* Is it more than 0 seconds per minute */ + unsigned char time_past_0 = (int)sec % ZBX_TIMER_DELAY <= (int)maintenance_time % ZBX_TIMER_DELAY || sec - maintenance_time > ZBX_TIMER_DELAY; + /* start update process only when all timers have finished their updates */ - if (sec - maintenance_time >= ZBX_TIMER_DELAY && FAIL == zbx_dc_maintenance_check_update_flags()) + if ((0 == maintenance_time || 0 == (int)sec % ZBX_TIMER_DELAY || time_past_0 ) && FAIL == zbx_dc_maintenance_check_update_flags()) { zbx_setproctitle("%s #%d [%s, processing maintenances]", get_process_type_string(process_type), process_num, info); if there is change about maintenance of zabbix4.x , please modify the Zabbix Documentation(https://www.zabbix.com/documentation/4.0/manual/maintenance) as following: ------------------------------------------------------------------------------------------------------------- Timer processes are responsible for switching host status to/from maintenance at 0 seconds of every minute. ⇒Timer processes are responsible for switching host status to/from maintenance every minute since server is start. Thanks & Best Regards, Yanxu , yao |
From: Terence T. W. S. <ter...@db...> - 2019-04-04 11:46:45
|
Hi Zabbix developers, Please advise how many Zabbix agents can connect to Zabbix proxy. Currently our environment is running on Zabbix LTS 4.0. Thanks Terence Sim DBS Bank Ltd | T&O-TS-Infrastructure / Sre DBS Asia Hub, Singapore * ter...@db...<mailto:ter...@db...> DBS. Live more, Bank less CONFIDENTIAL NOTE: The information contained in this email is intended only for the use of the individual or entity named above and may contain information that is privileged, confidential and exempt from disclosure under applicable law. If the reader of this message is not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this message in error, please immediately notify the sender and delete the mail. Thank you. |
From: edward y. <edw...@gm...> - 2018-01-15 07:50:01
|
Hi: zabbix_agentd does not set SOCK_CLOEXEC on fds created by `accept` call, which lead to fd leaking to children processes created by zabbix_agentd. In function zbx_tcp_accept: https://github.com/zabbix/zabbix/blob/trunk/src/libs/zbxcomms/comms.c#L1204 fd `accepted_socket` is created but not set SOCK_CLOEXEC. Is it by design, or it's OK to fix by added fcntl SOCK_CLOEXEC? Thanks! |
From: jayshankar n. <n_j...@ya...> - 2017-07-02 05:15:21
|
Hi, zabbix_traps file is not created. SNMPTrapperFile=/tmp/zabbix_traps.tmp is setup in server.conf. StartSNMPTrapper=1. Also i am dispatching traps with the help of snmptrap command. Some of the messages that comes up in the server log file is as below: 23832:20170630:123911.501 server #28 started [task manager #1] 23814:20170630:124011.503 cannot stat SNMP trapper file "/tmp/zabbix_traps.tmp" : [2] No such file or directory 23814:20170630:124111.515 cannot stat SNMP trapper file "/tmp/zabbix_traps.tmp" : [2] No such file or directory 23814:20170630:124211.528 cannot stat SNMP trapper file "/tmp/zabbix_traps.tmp" : [2] No such file or directory Thanks, Jayshankar |
From: Roman D. <rom...@te...> - 2011-08-22 11:29:19
|
Hi, I am using zabbix 1.8.6 with oracle backend. Having upgraded from 1.6.5, I used patch.sql script and there are bugs :) on line 536: UPDATE items SET units='Bps' WHERE type=9 AND units='bps';CREATE TABLE maintenances_groups ( there's missing newline after the ; thus this line is a syntax error on line 736: alter table sysmaps_links modify color nvarchar2(6) DEFAULT '000000';alter table sysmaps_link_triggers the same bug Thank you for fixing this! roman |
From: Galium T. <gal...@gm...> - 2010-07-13 17:36:44
|
Hi, Our Client has below requirement.We need to know which table we need to hit to get this information from zabbix database.If you can send query it will be more helpful 1. CPU Utilization Stats/ Monthly/all hosts aggregated (estimated to be 40-50 hosts) 2. Physical memory// Monthly/all hosts aggregated (estimated to be 40-50 hosts) 3. Virtual Memory/ Monthly/all hosst aggregated (estimated to be 40-50 hosts) 4. Network Utilization / Monthly/all host aggregated (estimated to be 40-50 hosts) 5. Disk Usage/ Monthly/all hosts aggregated (estimated to be 40-50 hosts) Best Regards, Galium Technologies |
From: Masopust, C. <chr...@si...> - 2010-06-17 07:00:00
|
I would like to use vfs.dev.read/write in my environment. According to the documentation this should be available but isn't. So, what would be needed to implement it? Where should I start? I would like to try to implement it, but would need some guidance what zabbix needs, what the structure is and so on... Any help? Or is it already in the pipeline and will come soon? Thanks, Christian |
From: Beat K. <bea...@vi...> - 2010-06-09 15:38:48
|
Hi I found a copy and paste bug in the solaris part of cpu monitoring, which does refuse to collect iowait data on solaris machines. The following patch was created against version 1.8.2 and does fix this issue, as far as i can see, the bug is still present in the never versions, and thus the patch should applied against SVN also. Keep in mind that Solaris 10 and up does not report iowait values anymore, thus you will aways get 0 back, but at least the agent does not refuse the item anymore and everything works fine on the older solaris versions. Regards, Beat Kneubuehl *** ./zabbix-1.8.2/src/zabbix_agent/cpustat.c Tue Jun 8 16:07:01 2010 --- ./zabbix-1.8.2/src/zabbix_agent/cpustat.c.fixed Tue Jun 8 16:08:26 2010 *************** *** 325,331 **** *cpu_idle += cpu->cpu_sysinfo.cpu[CPU_IDLE]; *cpu_user += cpu->cpu_sysinfo.cpu[CPU_USER]; *cpu_system += cpu->cpu_sysinfo.cpu[CPU_KERNEL]; ! *cpu_nice += cpu->cpu_sysinfo.cpu[CPU_WAIT]; } k = k->ks_next; } --- 325,331 ---- *cpu_idle += cpu->cpu_sysinfo.cpu[CPU_IDLE]; *cpu_user += cpu->cpu_sysinfo.cpu[CPU_USER]; *cpu_system += cpu->cpu_sysinfo.cpu[CPU_KERNEL]; ! *cpu_iowait += cpu->cpu_sysinfo.cpu[CPU_WAIT]; } k = k->ks_next; } *************** *** 349,355 **** *cpu_idle = cpu->cpu_sysinfo.cpu[CPU_IDLE]; *cpu_user = cpu->cpu_sysinfo.cpu[CPU_USER]; *cpu_system = cpu->cpu_sysinfo.cpu[CPU_KERNEL]; ! *cpu_nice = cpu->cpu_sysinfo.cpu[CPU_WAIT]; } kstat_close(kc); --- 350,356 ---- *cpu_idle = cpu->cpu_sysinfo.cpu[CPU_IDLE]; *cpu_user = cpu->cpu_sysinfo.cpu[CPU_USER]; *cpu_system = cpu->cpu_sysinfo.cpu[CPU_KERNEL]; ! *cpu_iowait = cpu->cpu_sysinfo.cpu[CPU_WAIT]; } kstat_close(kc); *** ./zabbix-1.8.2/src/libs/zbxsysinfo/solaris/cpu.c Tue Jun 8 16:07:08 2010 --- ./zabbix-1.8.2/src/libs/zbxsysinfo/solaris/cpu.c.fixed Tue Jun 8 16:08:17 2010 *************** *** 111,122 **** if ('\0' == *type || 0 == strcmp(type, "user")) /* default parameter */ SET_DBL_RESULT(result, collector->cpus.cpu[cpu_num].user[mode]) ! else if (0 == strcmp(type, "wait")) ! SET_DBL_RESULT(result, collector->cpus.cpu[cpu_num].nice[mode]) else if (0 == strcmp(type, "kernel")) SET_DBL_RESULT(result, collector->cpus.cpu[cpu_num].system[mode]) else if (0 == strcmp(type, "idle")) SET_DBL_RESULT(result, collector->cpus.cpu[cpu_num].idle[mode]) else return SYSINFO_RET_FAIL; --- 111,122 ---- if ('\0' == *type || 0 == strcmp(type, "user")) /* default parameter */ SET_DBL_RESULT(result, collector->cpus.cpu[cpu_num].user[mode]) ! else if (0 == strcmp(type, "iowait")) ! SET_DBL_RESULT(result, collector->cpus.cpu[cpu_num].iowait[mode]) else if (0 == strcmp(type, "kernel")) SET_DBL_RESULT(result, collector->cpus.cpu[cpu_num].system[mode]) else if (0 == strcmp(type, "idle")) SET_DBL_RESULT(result, collector->cpus.cpu[cpu_num].idle[mode]) else return SYSINFO_RET_FAIL; |
From: Paul W. <ma...@al...> - 2010-02-25 13:15:57
|
Jabbix library is a set of Java classes which can be used to add the functionality of the Zabbix monitoring system agent to your programs. The main library features: - interface for new metric agents and proxies; - support for active and passive checks; - adjustable active check scheduling; - asynchronous request processing and metric querying using thread pool. A stand-alone JabbixAgent program can be used as an entry-point for complex subsystem monitoring, for instance, as a representation of a computer cluster. With the use of specialized metric agents which can be configured and bind dynamically using the command-line parameters the information can be gathered in various ways including JSON, SOAP, RMI and other network services. LICENSE INFORMATION Copyright (C) 2010 Paul Wolneykien. Jabbix library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Jabbix library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with Jabbix library. If not, see <http://www.gnu.org/licenses/> PROJECT HOST Project is hosted at the Git.Alt: http://git.altlinux.org/people/manowar/packages/jabbix.git CONTACT INFORMATION SMTP: Paul Wolneykien <wol...@al...> URL: ALT Linux, Ltd <http://www.altlinux.ru/>, <http://www.altlinux.org/>. |
From: ma2dy <sou...@ma...> - 2009-06-25 19:20:03
|
Hi I find solution to draw cyrillic symbols on graph and maps in php-frontend More information avaliable here http://ma2dy.livejournal.com/ (in Russian) ma2dy |
From: Willington S. <wsu...@gm...> - 2009-04-26 20:28:53
|
Good afternoon, I need urgent help, I need to install and configure zabbix presented as monitoring tool in the university, I have made several manuals that encunetran on the web but still can not work with zabbix. Can help me sending me the steps for installation on Ubuntu 8.10 .... A million thanks to the person that I can -- Willy Suarez _____________________ Systems student Bogota - Colombia |
From: Umair M. <uma...@gm...> - 2008-08-12 14:18:17
|
Hello! I am passing an argument to an external script. The argument is in the form abc-[0]. When i write external[abc-[0]], the script does not work and when i write, external[abc-0], it starts working. The value passed to actual script by zabbix is "abc-[0" It's ignoring the last bracket. I need to pass these square brackets as a part of my program. What can the problem be? -- BR Umair |
From: Benny A. <ben...@am...> - 2008-08-05 17:55:56
|
bge...@ta... writes: > The zabbix schema is complex enough that I wouldn't recommend editing the > database. The easiest way is to use wget or curl to post the data the > right web page. You can find out what data fields are needed by looking at > the url, html source and/or the php source. That is certainly an option. However, it is difficult to verify whether Zabbix and the equipment/IP database stay in sync. Anyway, the get_dbid function looks less complicated than I thought originally. If the node id's are assumed to be 0 (in a single-node setup) it is particularly simple. I still think that it is ugly to mix node id's and item id's in one row, but I can imagine that it speeds up access. (The bc* family of functions are rather expensive, though. I played with replacing them with string functions, but it got too complicated because of zeros.) /Benny |
From: <bge...@ta...> - 2008-08-05 13:43:16
|
The zabbix schema is complex enough that I wouldn't recommend editing the database. The easiest way is to use wget or curl to post the data the right web page. You can find out what data fields are needed by looking at the url, html source and/or the php source. Baron Gerhardt bge...@ta... > What is the best way to automatically add or remove hosts from Zabbix > (from a script)? > > The obvious way is to just add the relevant data to the database, but > there is a snag: E.g. if you try to add a new group to the groups > table, you have to invent a new group id. There is a rather > complicated function called get_dbid which apparently allocates a new > ID, but that is hard to use if your scripts are not written in PHP. Is > there a specification for that function which other scripts can > follow? > > It seems like it would be cleaner if nodeid and item id were kept > separate in the database. Then you could just add auto_increment to > the groups table and be done... > > > /Benny > > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the > world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Zabbix-developers mailing list > Zab...@li... > https://lists.sourceforge.net/lists/listinfo/zabbix-developers > |
From: Benny A. <ben...@am...> - 2008-08-04 11:15:44
|
What is the best way to automatically add or remove hosts from Zabbix (from a script)? The obvious way is to just add the relevant data to the database, but there is a snag: E.g. if you try to add a new group to the groups table, you have to invent a new group id. There is a rather complicated function called get_dbid which apparently allocates a new ID, but that is hard to use if your scripts are not written in PHP. Is there a specification for that function which other scripts can follow? It seems like it would be cleaner if nodeid and item id were kept separate in the database. Then you could just add auto_increment to the groups table and be done... /Benny |
From: <bge...@ta...> - 2008-01-17 17:46:26
|
click: admin users <user_id> under media click: add now select media type (ie email) enter address (ie email address) give it a time when active (same as with actions and) select what level messages should be passed on select enable and click add If you haven't done so you will also have to add an action that sends the emails. to send emails on all trigger changes try config/actions create name the action event source trigger skip conditions operations: click new type send message select a user group or user leave subject and message alone click add (if you skip this and click save it will not save operation!!) status enable click save > hi, > > how to assign medias to the uesrs in zabbix-1.4.4. > > thank you for your help. > > Sanae > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/_______________________________________________ > Zabbix-developers mailing list > Zab...@li... > https://lists.sourceforge.net/lists/listinfo/zabbix-developers > |
From: sanae m. <mou...@gm...> - 2008-01-17 10:15:52
|
hi, how to assign medias to the uesrs in zabbix-1.4.4. thank you for your help. Sanae |
From: Baron J. G. <bge...@ta...> - 2007-10-29 21:50:18
|
I have been using zabbix 1.4 and 1.4.1 for some time now. I have one zabbix server and about 100+ remote host running agentd. When there are network problems it isn't uncommon (several times a week) that zabbix will hang on one, the other, or both the client and server. This appears to be a half socket closure issue that isn't being handled properly. The socket never times out and the only way to fix the problem is to restart zabbix-agentd and/or zabbix-server. |
From: Sebastian R. <Seb...@ge...> - 2007-09-11 15:03:03
|
Hi again, I was wondering if you'd care about OpenBSD startup script entries: in /etc/rc.local, add: >> # Zabbix Monitoring Server if [ -x /usr/local/sbin/zabbix_server ]; then su -l _zabbix -c "/usr/local/sbin/zabbix_server 2>&1|logger" echo -n ' zabbix_server' fi # Zabbix Monitoring Agent if [ -x /usr/local/sbin/zabbix_agentd ]; then su -l _zabbix -c "/usr/local/sbin/zabbix_agentd 2>&1|logger" echo -n ' zabbix_agentd' fi << in /etc/rc.shutdown add: >> # Stop Zabbix Monitoring Server if [ -f /var/tmp/zabbix_server.pid ]; then su -l _zabbix -c "kill `cat /var/tmp/zabbix_server.pid`" rm -f /var/tmp/zabbix_server.pid fi # Stop Zabbix Monitoring Agent if [ -f /var/tmp/zabbix_agentd.pid ]; then su -l _zabbix -c "kill `cat /var/tmp/zabbix_agentd.pid`" rm -f /var/tmp/zabbix_agentd.pid fi << For rc.local the entries go beneath "echo -n 'starting local daemons:'" and above "echo '.'" Keep in mind your database should have been started before, as well. For rc.shutdown it doesn't matter (I guess), just put it to the end of the file. Probably it's best to shut down the database after zabbix_server. Output will be logged to syslog (/var/log/messages) through logger. I presume your zabbix user is called "_zabbix" and you didn't change the default .pid-File location. I tested this on OpenBSD 3.9 as well as 4.1. But since I'm fairly new to OpenBSD, I might have some mistakes there. Greetings Sebastian -- GeNUA Gesellschaft für Netzwerk - und Unix-Administration mbH Domagkstr. 7, D-85551 Kirchheim. http://www.genua.de Tel: (089) 99 19 50-0, Fax: (089) 99 10 50 - 999 Geschäftsführer: Dr. Magnus Harlander, Dr. Michaela Harlander, Bernhard Schneck. Amtsgericht München HRB 98238 |
From: Baron J. G. <bge...@ta...> - 2007-07-25 22:16:34
|
Last weekend, there seems to have been a router issue close to our zabbix server. The problem is that after the connection was restored zabbix stopped reporting. We restarted zabbix-server and some agents started to report in, but most need the agent restarted on each box. We were using 1.4 for everything. Durring investigion, we found that curl was being used. So, I tested all combinations of with and without the curl flag on both 1.4 and 1.4.1 agentd. Initial results show that 1.4.1 is stable but 1.4 hangs everytime and the use of the curl flag has no impact. The question is: Was this a bug that was fixed in the new release or do I require further testing? And, if it was a fix could you point me to what was done? Thanks for the help Baron bge...@ta... |
From: Alexei V. <ale...@za...> - 2007-07-03 17:24:23
|
Hello Baron, Thanks for your message! I believe first problem is related to low settings of connection limit in mysql.conf. Second problem is already fixed in 1.4.1. Best regards, Alexei > Using the combination of PHP 4 and MySQL 4 has generated a few > problems. > > First is that zabbix-server stopped when it couldn't establish anymore > connections to mysql. Research showed that it wasn't dropping persitant > connections quick enough the simple work around I am using was to change > from mysql_pconnect to mysql_connect. > > Second problem was with the IT services pages would give a syntax error > in zabbix/include/services.inc.php. Solution was to change the & > $temp=array to &$temp in > function createServiceTree(&$services,$id=0,&$temp=array(), > $serviceupid=0,$parentid=0, $soft=0, $linkid=''){ > and > function createShowServiceTree(&$services,$id=0,&$temp=array(), > $serviceupid=0,$parentid=0, $soft=0, $linkid=''){ > Lines 574 and 603 > > I hope this helps further the project a little. > Baron > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Zabbix-developers mailing list > Zab...@li... > https://lists.sourceforge.net/lists/listinfo/zabbix-developers > |
From: Baron J. G. <bge...@ta...> - 2007-07-02 22:19:17
|
Using the combination of PHP 4 and MySQL 4 has generated a few problems. First is that zabbix-server stopped when it couldn't establish anymore connections to mysql. Research showed that it wasn't dropping persitant connections quick enough the simple work around I am using was to change from mysql_pconnect to mysql_connect. Second problem was with the IT services pages would give a syntax error in zabbix/include/services.inc.php. Solution was to change the & $temp=array to &$temp in function createServiceTree(&$services,$id=0,&$temp=array(), $serviceupid=0,$parentid=0, $soft=0, $linkid=''){ and function createShowServiceTree(&$services,$id=0,&$temp=array(), $serviceupid=0,$parentid=0, $soft=0, $linkid=''){ Lines 574 and 603 I hope this helps further the project a little. Baron |
From: Umair M. <uma...@gm...> - 2007-07-01 19:57:16
|
Hello guys, I have been stuck for quiet some time on this error and would appreciate if some one can give me their valuable advice. I have an agent installed on a remote machine having a public IP address. My server is on a private IP address but there is a VPN connection between the two. In between is ofcourse the router configured for forwarding the request. When i start the agent, i get the follwong error: * 28484:20070629:164845 Listener error: Connection from [<router_ip>] rejected. Allowed server is [<zabbix_server_ip>]* Why is the agent being rejected form the Router? This is the full error: * 28484:20070629:164845 Listener error: Connection from [<router_ip>] rejected. Allowed server is [<zabbix_server_ip>] 28485:20070629:171726 In process_active_checks('192.168.100.45',10051) 28485:20070629:171726 In get_min_nextcheck() 28485:20070629:171726 Sleeping for 60 seconds 28485:20070629:171826 In refresh_metrics('192.168.100.45',10051) 28485:20070629:171826 get_active_checks('192.168.100.45',10051) 28485:20070629:171959 Get active checks error: Cannot connect to [ 192.168.100.45:10051] [Connection refused] 28485:20070629:171959 Getting list of active checks failed. Will retry after 60 seconds 28485:20070629:172059 get_active_checks('192.168.100.45',10051) 28485:20070629:172059 Get active checks error: Cannot connect to [ 192.168.100.45:10051] [Connection refused] 28485:20070629:172059 Getting list of active checks failed. Will retry after 60 seconds 28485:20070629:172159 get_active_checks('192.168.100.45',10051) 28485:20070629:172159 Get active checks error: Cannot connect to [ 192.168.100.45:10051] [Connection refused] 28485:20070629:172159 Getting list of active checks failed. Will retry after 60 seconds 28483:20070629:172257 Processing request. 28483:20070629:172257 In check_security() 28483:20070629:172257 Listener error: Connection from [<router_ip>] rejected. Allowed server is [192.168.100.45] 28485:20070629:172259 get_active_checks('192.168.100.45',10051) 28485:20070629:172259 Sending [ZBX_GET_ACTIVE_CHECKS localhost ] 28485:20070629:172259 Before read 28485:20070629:172259 In parse_list_of_checks('ZBX_EOF ') 28485:20070629:172259 In disable_all_metrics() 28485:20070629:172259 Parsed [ZBX_EOF] 28485:20070629:172259 In process_active_checks('192.168.100.45',10051) 28485:20070629:172259 In get_min_nextcheck() 28485:20070629:172259 Sleeping for 60 seconds * -- Regards Umair |
From: Umair M. <uma...@gm...> - 2007-05-10 08:22:21
|
Hello, i would like to know, if we were able to execute an external script in Zabbix 1.1.7. The requirements would be to execute the script on the Zabbix server, gather the required information from the host and then process the received response. I have been going through the Zabbix Forums, but really could not get a straight lead. I understand that the Zabbix Developer community released a patch for the external scripts, but so far i have not been able to finds its documentation or the patch itself ! Any suggestions ? -- Regards Umair Imam |