Browsing articles from "August, 2011"
Aug
15

SSHFS Symlinks

Using the default settings, symlink on sshfs don’t work.

You can add an option with the -o flag that will get these working properly:

sshfs user@host:/path/to/mount/ ~/mountpoint -oauto_cache,reconnect,volname=mountname,defer_permissions,transform_symlinks,follow_symlinks

Aug
11

MAMP MySQL won’t start

If you use MAMP for local PHP/MySQL development on OS X then you’re likely to come across this problem with MySQL starting once in a while.

MAMP is a great bit of software but every now and then you will see that MySQL has a problem starting. Checking PHPMyAdmin you might see “Error: Could not connect to MySQL server!”.

Don’t despair, there is a very quick fix:

  1. Quit MAMP
  2. Open terminal and type: sudo killall -9 mysqld
  3. Reopen MAMP

That will fix it but if it’s still not working you can try visiting this MAMP forum thread for more details.

Sponsored links