Changes between Version 8 and Version 9 of jazz/Enomalism
- Timestamp:
- Jun 11, 2008, 10:41:15 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
jazz/Enomalism
v8 v9 6 6 7 7 * Use the VMWare Image created flowing the instruction described in ''[wiki:jazz/DRBL_Xen Massive Deployment of Xen enabled Virtual Cluster using Diskless Remote Boot Linux]'' 8 * Check Pre-installation 8 9 == Pre-installation == 10 * We will need package from Debian Testing (lenny), so you need to add testing apt source list to /etc/apt/source.list.d/ and run '''''apt-get update; apt-get dist-upgrade''''' 11 {{{ 12 root@drbl-xen-srv:~# cat << EOF > /etc/ 13 }}} 14 * Install packages which is needed for Enomalism 9 15 {{{ 10 16 root@drbl-xen-srv:~# apt-get install coreutils ssh build-essential python-dev mysql-server libmysqlclient15-dev python-mysqldb qemu bridge-utils python … … 41 47 * Since I install Debian Etch, so I download the source code tar ball. 42 48 * Unpack Enomalism2-2.0.1A.tar.gz and run setup.py. 43 * [Note]$mysql_root_password is the MySQL root password you created earlier. Replace $user and $password with the username and password of your choice. For default configuration, you can use enomalism2 as $user, 'zx45qw12' as $password.49 * [Note]$mysql_root_password is the MySQL root password you created earlier. Replace $user and $password with the username and password of your choice. 44 50 {{{ 45 51 root@drbl-xen-srv:~# wget http://nchc.dl.sourceforge.net/sourceforge/enomalism/Enomalism2-2.0.1A.tar.gz … … 51 57 root@drbl-xen-srv:~/Enomalism2-2.0.1A# vi config/`hostname`.cfg 52 58 }}} 59 * Change following lines with proper setting. 60 {{{ 61 sqlobject.dburi="mysql://enomalism2:zx45qw12@localhost/enomalism2" 62 enomalism2.self="5fe6f05e-7ee0-11dc-ba7c-0011d88b8e81" 63 enomalism2.baseurl="http://127.0.0.1:8080/rest/" 64 enomalism2.ip_addr="1.2.3.4" 65 }}} 66 * Start enomalism2 67 {{{ 68 root@drbl-xen-srv:~/Enomalism2-2.0.1A# cd .. 69 root@drbl-xen-srv:~# mv Enomalism2-2.0.1A /opt/enomalism2 70 root@drbl-xen-srv:~# /opt/enomalism2/scripts/enomalism2.sh start 71 }}}