summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Norwood <robin.norwood@gmail.com>2011-07-25 15:38:37 -0500
committerRobin Norwood <robin.norwood@gmail.com>2011-07-25 15:38:37 -0500
commit54f85d8d8780dc563bf0bfc9241bc92141156685 (patch)
tree40e38b697e878fad3b798f3c2c5343ff1d7d96d7
parent4d113753a97247734dac0e7243aa272bd9124911 (diff)
Update README with instructions to fix segfault.
-rw-r--r--README.md17
1 files changed, 17 insertions, 0 deletions
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 <appropriate working directory>
+ $ hg clone https://bitbucket.org/ambroff/greenlet
+ $ cd greenlet
+ $ sudo python setup.py install
+
+ $ cd <appropriate working directory>
+ $ hg clone https://bitbucket.org/which_linden/eventlet
+ $ cd greenlet
+ $ sudo python setup.py install
+
# For Keystone Contributors