Skip to content

Instantly share code, notes, and snippets.

@rdmurphy
Last active August 29, 2015 14:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rdmurphy/7889cd015a09638f58b5 to your computer and use it in GitHub Desktop.
Save rdmurphy/7889cd015a09638f58b5 to your computer and use it in GitHub Desktop.
Yosemite Upgrade Problems

Problems I Had With OS X Yosemite (10.10)

PostgreSQL Wouldn't Start

Tried to run postgres -D /usr/local/var/postgres and got this:

FATAL: could not open directory "pg_tblspc": No such file or directory

An easy fix. The Yosemite install blows away some empty directories that PostgreSQL expects.

mkdir /usr/local/var/postgres/pg_tblspc
mkdir /usr/local/var/postgres/pg_twophase
mkdir /usr/local/var/postgres/pg_stat_tmp

Source: http://stackoverflow.com/questions/25970132/pg-tblspc-missing-after-installation-of-os-x-yosemite-beta

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment