In a previous post, I wrote about the release of Open Panel and OpenCLI.
OpenCLI is going to change the way we maintain systems - for too long many repetitive steps have been automated hundreds of times by different sysadmins without having produced a standard. I think OpenCLI will become the standard that covers 99% of the tasks you perform while maintaining your systems.
Tired of getting mail notifications of e-mails you’ve already seen but have not read? The default mozilla thunderbird new e-mail notification tool has the tendency to display old mail and mail that has already been moved to junk folders. When you flag your e-mail as ‘read’ when you filter out junk, you can work around the displaying of junk messages.
The past months, I teamed up with the panel6 folks in their project to create a server/webhosting control panel “that eats webmins for breakfast”. I’m very happy with the results so far: the webbased GUI communicates 100% through ajax with the core system.
And it gets even better: it contains a command-line called ‘opencli’
Creating vhosts on servers is repeating the same trick every time. I know most people around me have automated this using ’setup-a-new-domain’-scripts, but handmade scripts usually lack proper errorchecking - unless you spend a lot of time writing them. With opencli creating a new vhost is as simple as entering ‘create vhost www.foo.com’ and apache is up and running the domain \o/.
While upgrading Apache to version 2.2.4-2 for a subversion upgrade (version 1.4.4dfsg1-1) I ran into errors with my auth_pgsql (or any other auth_mysql, auth_ldap or auth_* module) setup:
“Internal error: pcfg_openfile() called with NULL filename”
This is caused by auth_basic and stops the authentication and authorisation process. Adding the following directive to your auth_pgsql or auth_ldap config file solves the problem:
“AuthBasicAuthoritative Off”
It disables basic authorisation being authoritive for the authorisation process. The errors will still be visible in your logfiles, but the authorisation scheme works as normal.
I’m about to start a new project: a transparent SQL proxy. Connect your PHP-app to this “fake” mysql server, which sits in between your app and postgresql server translating all mysql-specific queries to normal sql’92 compliant format.
Requirements:
support backend connections to postgres
emulate mysql behaviour to frontend
in Release1, queries for ‘X-cart’ shopping cart software should be supported
I have a clear picture of this. Does anyone have more ideas to contribute? I’ll start designing in the next few days.
The eclipse/java error “Error starting modern compiler” when trying to compile something using javac in eclipse is being caused by eclipse using a different java VM than the one JAVA_HOME is pointing to.