cccarey / dolomite forked from CarlosGabaldon/dolomite
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (1)
- Wiki (1)
- Graphs
-
Branch:
master
Christian Carey (author)
Tue Mar 03 21:31:59 -0800 2009
commit c923910893f25480541ee55e1b54244360e6f39b
tree 41808551a4d900713de885de58e11c11a4744ef0
parent d968b8147a0f133504069573181054f514b55b04
tree 41808551a4d900713de885de58e11c11a4744ef0
parent d968b8147a0f133504069573181054f514b55b04
dolomite /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
README | ||
| |
build-all | ||
| |
build.py | ||
| |
create_virtualenv.sh | ||
| |
db4.7-conf | ||
| |
db4.7.cleanup | ||
| |
install/ | ||
| |
libevent-conf | ||
| |
memcached-conf | ||
| |
memcachedb-conf | ||
| |
tools/ |
README
Dolomite
Getting started with your Dolomite foundation
---------------------------------------------
- Install the virtualenv python package on your machine
easy_install virtualenv
OR
sudo easy_install virtualenv
- Download create_virtualenv.sh
( http://github.com/cccarey/dolomite/raw/master/create_virtualenv.sh )
- Execute create_virtualenv.sh in a place where you want your
environment, e.g. /home/youruser
cd /home/youruser
./create_virtualenv.sh
Note: this creates a directory called dolomite-env at the spot
where you run the script.
- Activate your dolomite foundation environment with the command:
source dolomite-env/bin/activate
- Start local memcached daemon:
start-memcached
- Test local memcached daemon:
test-memcached
- When done, you can deactivate the dolomite foundation environment:
deactivate
Other tools available in this repository:
Ubuntu JEOS on VMWare
---------------------
If running on Ubuntu JEOS ( http://www.ubuntu.com/products/whatisubuntu/serveredition/jeos )
on VMWare. Use the install/install_openvmtools.sh script to install the fast ethernet
and other VMWare tools
Quick Start:
- Download install/install_openvmtools.sh script from github.com
- Run script
sudo ./install_openvmtools.sh
Note: script currently reboots the image at the end.
MemcacheDB
---------------------
Install script for Ubuntu 8.10
Script installs depedency packages, downloads latest SVN version of
memcachedb from http://memcachedb.googlecode.com/svn/trunk/ , compiles
and installs it.
Quick Start:
- Download install/install_memcachedb.sh script from github.com
- Run script
sudo ./install_memcachedb.sh
- Run memcachedb as daemon process
sudo su -
memcachedb -p21201 -u root -d -r -H /home/ccarey/memcachedb/testenv -N -v >/var/log/memcachedb 2>&1
exit
- Run the benchmark script - ./memcache/tools/mcben.py
- Run the tests - ./memcache/tools/mdbtest.py (2 tests currently fail out of the box)

