-
Currently the SHM directory, /var/run/balance, is hardcoded into the source. This should instead be configurable via a command line option, default to /var/run/balance if not specified.
Justification:
balance is a userland tool and it should be possible to run it without having access to any privileged resources, e.g. writing in the /var tree.
Temporory workaround:
Change SHMDIR in...
2008-10-30 12:21:10 UTC in balance
-
These are the warnings I get when I compile. I think thay should be corrected, even if they do not affect the working of the mod_ntlm.
I'm on Solaris 10, but I would guess that other platforms see similar warnings.
----
-bash-3.00$ make all
apxs -c -o mod_ntlm.so -Wc,-shared mod_ntlm.c
/var/apache2/build/libtool --silent --mode=compile /opt/SUNWspro/bin/cc -prefer-pic -O -xarch=386...
2007-08-12 19:25:57 UTC in NTLM auth module for Apache/Unix
-
Good news: mod_ntlm will work on Apache 2.2 you just have to make one little change to the source code before you build:
In mod_ntlm.c the line "apr_pool_sub_make(&sp,p,NULL);" must be replaced by "apr_pool_create_ex(&sp,p,NULL,NULL);".
That's it!
Background for this: Apache 2.0 use APR v0.9.x while Apache 2.2 use APR v1.2.x. The apr_pool_sub_make function...
2007-08-12 18:45:28 UTC in NTLM auth module for Apache/Unix
-
Shannon, Clay,
Thank you so much for your help. I really appreciate it.
I think there may be many in the same situation as me: I know my Java stuff, but COM is not something I'm into. Often with a COM library the examples that come with it are written in Visual Basic. Very easy to understand, but VB is very good at shielding you from knowing much about COM at all. So this is the starting...
2007-07-19 11:09:44 UTC in JACOB - Java COM Bridge
-
I just cannot figure out how people get started with JACOB?
I've read through all accompanying documentation as well as the forum. Still not wiser. I've also looked at Dan Adler's site.
The official docs says that is it based on the Microsoft VM's com.ms.com classes and users of JACOB are encouraged to download the Microsoft VM SDK docs. Only proplem is that they no longer exist. Microsoft.
2007-07-18 12:23:24 UTC in JACOB - Java COM Bridge
-
Very interesting tool. Thanks for that.
I would like to measure the delay that two revinetd's would add compared to a direct connection.
Are you aware of any of the many Unix/Linux network tools packages that could be suitable for this ? or have any such test already been performed?
My plan is to do the tests all within a single host to eliminate all other factors and isolate the effect of...
2006-09-21 09:43:37 UTC in revinetd
-
Logged In: YES
user_id=1468749
Workaround this by manipulating MySQL table nagios_services
manually, i.e. in column 'is_volatile' you will see a null
value but if you update to '1' or '0' it will become part
of the export.
2006-06-04 19:02:05 UTC in Fruity : A Nagios Configuration Tool
-
Cannot find the is_volatile setting on Services
configuration. This has also been raised on the forum.
2006-05-05). It is part of Fruity's MySQL db model but
seems to have been forgotten on the GUI.
2006-05-23 15:04:22 UTC in Fruity : A Nagios Configuration Tool
-
Current code uses:
int procpid;
Instead the code should consistently use:
pid_t procpid;
The reason is that it cannot be assumed that a PID is
always an int, e.g. on Solaris 32 bit is a long int.
This is a minor thing.
Lars.
2006-04-03 21:51:55 UTC in Nagios Plugin Development
-
nrpe uses the popen to execute the check command. This
means that a new shell will be spawned.
check_procs should take care to ignore this process.
If not then if check_procs is used with the -a option
it will count one too many processes it its count.
At the moment when nrpe executes check_procs I see two
processes on my system:
../libexec/check_procs ..... foo
sh -c...
2006-04-03 21:43:58 UTC in Nagios Plugin Development