• Which process at which port?

    I came back to the computer earlier today and found one of my servers to be unresponsive. The front-end of one of my bittorrent hosting boxes did not load so I tried some of the other websites hosted on the same box. None were loading.

    Luckily accessing via SSH worked fine and revealed that Apache had died for unknown reasons at some point from yesterday onwards. Trying to start Apache was not possible since it could not bind to the socket at port 80. I had already checked for any remaining PIDs from the previous httpd process, so I started worrying about a possible intrusion or some root-kit binding to port 80 instead of Apache.

    I started running netstat to reveal the listening ports but unfortunately the process information field was empty for this particular process in question. A quick search showed how lsof could also be used to display the name and pid of the listening process on any port number. In my case I typed:

    lsof -i :80

    This displayed a couple of known Python orphaned processes that belonged to the original and defunct httpd process. Once killed Apache was started with no issues.

    After all, nothing dramatic!

  • Remove white border on images in WP

    When posting last time I realised my example images had a little white border around them. For other occasions it may have been nice but this time I needed it without any borders.

    Another example below, left with white border and right with no border:

    test image test image

    To remove that automatically added border when you submit your post using WordPress do the following:

    1. Open your post for editing.
    2. Click on the image in question and select the Edit Image option.
    3. Click on the Advanced Settings tab on the top.
    4. Insert a 0 (zero digit) in the Border field under Image Properties.
    5. Save.

    Pretty simple stuff but thought I would share it in case someone else was looking for a remedy.

  • Rounded corners online tool

    Lately I have been working on improving my consultancy’s website towards a more showcase based look’n’feel. I had to post a photo of myself so I first decided to use my Gravatar image. As you can see below it looked a bit dull with square corners, so instead I changed the photo to round corners:

    Indeed nicer, no? Gravatar should definitely offer rounded corners as an optional feature.

    Thanks goes to RoundPic for providing an easy way of quickly rounding the corners of any photo or image.