WordPress database error: [Can't open file: 'wp_comments.MYD'. (errno: 144)]
SELECT ID, COUNT( comment_ID ) AS ccount FROM wp_posts LEFT JOIN wp_comments ON ( comment_post_ID = ID AND comment_approved = '1') WHERE ID IN (79) GROUP BY ID

Curioso! » Blog Archive » Reverse proxy for EyeHome


Reverse proxy for EyeHome



My EyeHome is connected to the Ethernet port of my Powerbook with Internet sharing enabled to the Airport. This provides access to the Internet, but not to other computers on my LAN. In order to reach my iMac, I added a reverse proxy to /etc/httpd /httpd.conf:

  • Uncomment
    #LoadModule proxy_module       libexec/httpd/libproxy.so
    
    and
    #AddModule mod_proxy.c
    
  • Add these lines
    Listen 8001
    <VirtualHost *:8001>
        ProxyPass / http://192.168.1.30:8000/
    </VirtualHost>
    
    where 192.168.1.30 is the IP address of my iMac

This forwards HTTP requests to port 8001 of my Powerbook to port 8000 of my iMac (where EyeHome is running).

It appears that instead of the EyeHome software on Mac, you can also run the Neuston Media Center software on Linux or Windows. Update: not really, apparently the EyeHome and the Neuston Media Center are distinguishable by the server.

WordPress database error: [Can't open file: 'wp_comments.MYD'. (errno: 144)]
SELECT * FROM wp_comments WHERE comment_post_ID = '79' AND comment_approved = '1' ORDER BY comment_date

Leave a Reply