diff options
| author | Robin Norwood <robin.norwood@gmail.com> | 2011-07-25 15:38:37 -0500 |
|---|---|---|
| committer | Robin Norwood <robin.norwood@gmail.com> | 2011-07-25 15:38:37 -0500 |
| commit | 54f85d8d8780dc563bf0bfc9241bc92141156685 (patch) | |
| tree | 40e38b697e878fad3b798f3c2c5343ff1d7d96d7 | |
| parent | 4d113753a97247734dac0e7243aa272bd9124911 (diff) | |
Update README with instructions to fix segfault.
| -rw-r--r-- | README.md | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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 |
