Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

  1. Start server with puppet script
  2. Clone git repositories into /opt

    Code Block
    cd /opt
    sudo git clone https://github.com/futures/ff-jmeter-madness.git ff-jmeter-madness
    sudo git clone https://github.com/futures/ff-jmeter-testResults.git ff-jmeter-testResults
  3. Update fcrepo webapp logging to INFO

    Code Block
    sudo vi /var/lib/tomcat7/webapps/fcrepo/WEB-INF/classes/logback.xml
  4. Run default (async config) tests

    Code Block
    cd /opt/ff-jmeter-testResults/2013-06-17-Fedora4Tests
    sudo ./fedora4Test.sh
  5. Run sync config ) tests

    Code Block
    sudo vi /etc/default/tomcat7
    # Change to: 
    JAVA_OPTS="${JAVA_OPTS} -Dfcrepo.modeshape.configuration="classpath:/config/single/repository.json"
     
    # Stop tomcat
    sudo service tomcat7 stop
     
    # Clear data dir
    sudo rm -rf /opt/fcrepo4-data/*
     
    # Start tomcat
    sudo service tomcat7 start
     
    # Run tests
    cd /opt/ff-jmeter-testResults/2013-06-17-Fedora4Tests
    sudo ./fedora4Test.sh

...