分类: 云计算
2017-04-11 09:45:57
转自:
This page describes how to setup Eclipse Dev Env for keystone project.
OS: redhat 6.1 bit64
Libvirtd: libvirtd and libvirt client are installed ( use "virsh -c qemu:///system list" to test its availability)
development env: GCC and related header files (for install needed python modules)
mysql: server and client, with root password for mysql root account ( use "echo "show databases" | mysql -uroot -proot" to test it)
OS user to use: root
1. Make sure there is one Java available: java -version.
2. Download Eclipse
We preferably download Eclipse IDE for Java EE Developers. Please choose the proper platform version according to the OS used. Unzip it into a dir, for example /root/eclipse.
3. Prepare
After start the Eclipse, we install pydev with p2 site http://pydev.org/updates. To install it, just call out Eclipse's "install" dialogue by menu "help->install new software...".
With installed, we need to configure preference. call out preference dialogue by menu "window->preferences":
4. Install EGIT
Install EGIT plugins into Eclipse with site .
Switch to "Git repository exploring" perspective and clone the keystoneclient Git repo "":
We can see where it is cloned on local directory:
Just shown by above figure, the code is under "/root/test/git/python-keystoneclient".
Keystoneclient will be installed on OS since in general we are not interested to have it in Eclipse.
On a console, run:
pip install -r tools/pip-requireis used to install pre-requisites.
Clone keystone GIT repo site "".
We will put keystone into Eclipse workspace and then start it there.
Right click on "working directory" and then choose "import project..." to import keystone into Eclipse workspace as "general project" since there is no project metadata in GIT:
Switch to perspective and set keystone project as project:
Call out project's properties dialogue by right context menu properties to set project's PYTHONPATH:
Run shell scripts below to create keystone db:
And Run the shell below to create tables for keystone:
To run we can click "Debug" button on "Debug Configuration" dialogue or run it from "Debug/Run" pull down tool bar button:
Run the following scripts to do the initializing to populate the first user "admin" with password "password":
To check, we can run keystone client: