Changes between Version 23 and Version 24 of GIMIv3/Documentation


Ignore:
Timestamp:
07/29/14 20:37:03 (10 years ago)
Author:
olivier.mehani@nicta.com.au
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GIMIv3/Documentation

    v23 v24  
    1616
    1717 * Install software sources (http://oml.mytestbed.net/projects/oml/wiki/Installation#Debian-FedoraCentOS)
     18{{{
     19echo 'deb http://download.opensuse.org/repositories/home:/cdwertmann:/oml/xUbuntu_14.04/ /' | sudo tee /etc/apt/sources.list.d/oml2.list
     20sudo apt-get update
     21}}}
    1822 * Install software packages for the OML server and desired database (http://oml.mytestbed.net/projects/oml/wiki/Installation#Collection-Point-Server-and-Database-Tools)
     23{{{
     24sudo apt-get install oml2-server
     25}}}
    1926 * If using PostgreSQL, a user must be created, and the oml2-server command line changed (http://oml.mytestbed.net/projects/oml/wiki/Installation#Using-the-PostgreSQL-Backend)
    20 
     27{{{
     28createuser -U DBADMIN --pwprompt --no-superuser --createdb --no-createrole --no-replication oml # Remove the --no-replication if there is an error (<9.2)
     29sudo sed -i "s/^#OPTS/OPTS/;s/PASS/OMLPASSWORD/" /etc/default/oml2-server # Replace OMLPASSWORD with the password entered at the previous step
     30}}}
    2131 * Test that everything work (http://oml.mytestbed.net/projects/oml/wiki/Installation#Testing)
     32{{{
     33oml2-generator --amplitude 1 --frequency 1000 --samples 10 --sample-interval .1 --oml-id localservertest --oml-domain installtest --oml-collect localhost
     34}}}
    2235  * This will require the OML clients tools to be installed too (http://oml.mytestbed.net/projects/oml/wiki/Installation#Client-library)
    23 
     36{{{
     37sudo apt-get install liboml2 oml2-example
     38}}}
     39 * Open the firewall ports (3003 by default; http://oml.mytestbed.net/projects/oml/wiki/Installation#Troubleshooting)
     40{{{
     41sudo iptables -I INPUT -p tcp --dport 3003 -j ACCEPT
     42sudo ip6tables -I INPUT -p tcp --dport 3003 -j ACCEPT
     43# optional steps to save firewall configuration across reboots:
     44sudo apt-get install iptables-persistent
     45sudo service iptables-persistent save
     46}}}
     47  * Test from a remote machine (http://oml.mytestbed.net/projects/oml/wiki/Installation#Full-Reporting-Chain)
     48{{{
     49oml2-generator --amplitude 1 --frequency 1000 --samples 10 --sample-interval .1 --oml-id remoteservertest --oml-domain installtest --oml-collect cancey
     50}}}
    2451=== AMQP ===
    2552[Thierry]