Web2.0 workshop ahead in Rennes in early July

I’ll be visiting Rennes (France) in early July for the « Les étés TIC de Bretagne » conference/workshop, which promise 3 days of gathering around Internet and Web2.0 usages in Britanny.

This will be an oportunity for our Contrib 2.0 project to have a workshop, and advance a bit more our research agenda.

In between, I’ll have xen setup to demonstrate some novelties of PicoForge, I hope.

Remote logging console in case of crashes

I’ve tried and debug kernel crashes happening on one system, by sending its console messages to a remote machine.

I hope it will enable me to see what’s happening as it crashes, since most of the oops are lost when I look at the physical console.

Anyway, in order to do that, I configured the crashing machine’s kernel to use the netconsole module to output console messages on the network.

Here’s the setup in /etc/modules on the crashing machine (whose IP is 192.168.0.2) :

netconsole netconsole=6665@192.168.0.2/eth0,6666@192.168.0.1/00:12:34:56:78:90

It will instruct the netconsole module to dump the logs on port 6666 on system 192.168.0.1 whose MAC address is 00:12:34:56:78:90.

On the logging machine (192.168.0.1), I installed syslog-ng to be able to dump the logs coming from netconsole into a log file. Here’s the setup :

source netlog {
udp(ip(0.0.0.0) port(6666));
};
destination netlog
{
file("/var/log/netconsole.log");
};
log
{
source(netlog);
destination("netlog");
flags(final);
};

I had tried previously to use cancd, but i prefer to keep all logs in one single file.

Hope this helps

Hello planet phpGroupware

Hello planet phpGroupware !

I’m not a developper of the project, but as a contributor to Picoforge, which uses phpGroupware for its infrastructure, I’m from time to time confronted to internals of the project, so I’ll probably have things to say about it.

At the present time, I’m considering how I can do Apache authentication in phpGroupware for SSO among all Web applications integrated in PicoForge, instead of having the standard PHP/web form login dialog. There seem to have been some code included in phpGroupware, but the stable version doesn’t seem fully ready for that… so I think I’ll have to patch.

And yes, we wanna stick as much as possible to Debian etch’s version of phpGroupware, even though things we’re interested in are probably more or less there in HEAD (special dedicace à Caeies;).

Moving my professional blog to new homepage

Attention : I’m using a new homepage for hosting my weblog.

All content which used to be available at http://www-inf.int-evry.fr/~olberger/weblog/ should now be accessed at http://www-public.int-evry.fr/~berger_o/weblog/

Please update bookmarks and/or syndication.

Rewriterules are active to redirect to the new location in principle.

Thanks for keeping with us 😉

Update 2007/03/18 : I’ve added some special feeds redirection to try and wrap each items syndicated from the old location with a warning header. I’ve used goog old planet to do so… If wanna check the results, see (the ATOM feed) : http://www-inf.int-evry.fr/~olberger/feed/atom/. Planet, I love you 😉