lunatechian (lunatech-ian)

one relating to, belonging to, or resembling lunatech

mysql startup debugging tip

If you are not able to start the mysql daemon repeatedly using your linux distribution init scripts and you are ready to pull out your hair in frustration, here is a tip that might help you in finding the problem.

Try running the mysqld_safe from the command line (without using the init scripts). Try running /usr/bin/mysqld_safe -v, which should spit out some debugging information.

If that fails, try calling the mysqld daemon directly from the command line, with the "-v" option . mysqld is usually present under /usr/sbin/mysqld. mysqld can be called with --print-defaults to get the command line options it would be run with.

/usr/sbin/mysqld would have been started with the following arguments: --user=mysql --pid-file=/var/run/mysqld/mysqld.pid ..... --max_binlog_size=100M

Try adding the -v option to these options to get more verbose details. When run from command line, mysqld will not detach from console and will print debugging info that might be useful in finding the cause of the error.

I suggest using 3 terminals to figure out what is going on

  • one terminal with tail -f /var/log/mysql/mysqld.err
  • one terminal with tail -f /var/log/messages
  • one terminal where I ran the mysqld_safe / mysqld command

The init scripts are usually good for day to day work. However, sometimes the init scripts can impede a innodb crash recovery process on a large database. Some init scripts have timeout built into them and they can kill mysql while the innodb is still trying to recover its tables.

Defined tags for this entry: , ,

Humor in the bookstore

"Atlas Shrugged" placed in the Humor section in the bookstore. The book on the left is "Undateable" and on the right is "11002 things to be miserable about". I salute the joker who did this - I liked the joke.
Humor in the bookstore

Defined tags for this entry: , , ,

Release of PythonOnPlanes-1.3.07 aka. SuperSunday release

What is PythonOnPlanes ?

PythonOnPlanes is a rapid development framework for Python which uses commonly known design patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. Our primary goal is to provide a structured framework that enables Python users at all levels to rapidly develop robust web applications, without any loss to flexibility.

See the Features list below to learn more about the framework.

Release Announcement

The Release Engineering Team is happy to announce the availability of PythonOnPlanes-1.3.07 , the latest release of the PythonOnPlanes Stable development branch. Since PythonOnPlanes-1.3.06 release we have made many improvements in functionality, stability, performance, and mod_snake_oil support for Apache web servers, as well as dealt with known security issues and made many bugfixes.

Major highlights in the release include Active Scrum Manager 1, Sanity Preserver 3.13 and Lart 22.21. This is also the first release with the PythonOnPlanes Live CD Installer officially debuting on the x86 platform.

Features

The software development world is moving towards AGILE DEVELOPMENT, WEB-2.OH, GURU PRESENCE and LEAN SOFTWARE. Our Framework is geared to support all these features.

"Out of the box" features available

Out of the box PythonOnPlanes supports

  • Sprint Management
  • Pair programming using an editor that can be shared by 2 developers. We have named it ALN (Analog Large Notebook)
  • LoC2LoC to generate a report on each developer's productivity.
  • Active Suggest DESIGN PATTERN (ASDP). This feature will make your refactoring efforts a snap

Beta Experimental Features

These features are not enabled by default and you have to enable them by editing the configuration file.

  • Developers' Blog . Each developer in the team is given a blog which he can update. If enabled, PythonOnPlanes will generate a daily report of the developer activity log and post it on the blog too
  • CutesyErrorMessages-0.0.1-BETA. This replaces stern error messages with very user friendly messages

GET PythonOnPlanes-1.3.07 IN NO TIME

Download PythonOnPlanes-1.3.07 from <http://pythononplanes.com/>

Defined tags for this entry: , , ,

fun with about:*

Mozilla family of browser supports a variety about: commands. Today I searched inside the source code to see where they have been implemented and the complete list of the commands it supports. Here is the list Firefox supports. Type these urls in your Firefox browser for countless hours of fun (for very low values of fun).

  • about:config
  • about:credits
  • about:plugins
  • about:mozilla
  • about:logo
  • about:buildconfig
  • about:license
  • about:licence
  • about:about
  • about:neterror

Link: source code

Defined tags for this entry: ,

ingenious use of the HL engine

This looks very obvious in hindsight, but I am sure not many would have thought about this. This guy uses the HL's source engine to produced a model of the Kaufmann House by Frank Lloyd Wright. Using the Source Engine, as opposed to more traditional Architectural Software, allows the use of dynamic lighting and a real-time walkthrough of the scene in high resolution.

Links: the HL map for Kaufmann House and a walk through available here

Defined tags for this entry: , ,

stuff that sucks

Small list of stuff everyone thinks is cool, but I did not find them worth the price all the electrons had to pay

  • Second life - seriously people, what is so great about it that you are paying real world money for virtual stuff.
  • A-list Bloggers - some of them are a bunch of pretentious idiots. Enough said.
  • Orkut

Defined tags for this entry: , , ,

mysql slave problem

If you are seeing the line received 0 length packet from server, apparent master shutdown in your mysqld.err file (when your mysql server is a slave), check the server-id of the machines which are replicating from the same server. Most likely, you will find that there are boxes which have the same server-id

Defined tags for this entry: , ,