From 54f85d8d8780dc563bf0bfc9241bc92141156685 Mon Sep 17 00:00:00 2001 From: Robin Norwood Date: Mon, 25 Jul 2011 15:38:37 -0500 Subject: Update README with instructions to fix segfault. --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 981b8821..97ca1f0b 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,23 @@ Starting both Admin and Service API endpoints: $ ./bin/keystone +### Temporary fix for Segfault + +On some OSes, specifically Fedora 15, the current versions of +greenlet/eventlet segfault when running keystone. To fix this, install +the development versions of greenlet and eventlet + + $ pip uninstall greenlet eventlet + $ cd + $ hg clone https://bitbucket.org/ambroff/greenlet + $ cd greenlet + $ sudo python setup.py install + + $ cd + $ hg clone https://bitbucket.org/which_linden/eventlet + $ cd greenlet + $ sudo python setup.py install + # For Keystone Contributors -- cgit