This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "jbossNode" | |
| usebundle => jbossNode( "5.1.2-1", "node00", "jbossa", "/usr/local/jboss-apps", "/usr/local/jboss-eap-5.1.2/jboss-as", | |
| "/usr/local/jboss-apps", "/var/log/jboss", "30", "5", "DEVPARTITIONCAS01", "224.1.1.7", | |
| "ports-default", "8080", "8440", "127.0.0.1:8780","256m", "1024m", "2048m", "/usr/local/jdk1.6.0_33", | |
| '-Djboss.proxyname=localhost -Djboss.proxyport=8440', | |
| '-Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Xdebug -Xrunjdwp:transport=dt_socket,address=${DEBUGPORT},server=y,suspend=n' | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [root@localhost ~]# /var/cfengine/bin/cf-agent -Kv -D localDev,satelliteClient,CASDev | |
| cf3 Cfengine - autonomous configuration engine - commence self-diagnostic prelude | |
| cf3 ------------------------------------------------------------------------ | |
| cf3 Work directory is /var/cfengine | |
| cf3 Making sure that locks are private... | |
| cf3 Checking integrity of the state database | |
| cf3 Checking integrity of the module directory | |
| cf3 Checking integrity of the PKI directory | |
| cf3 Looking for a source of entropy in /var/cfengine/randseed | |
| cf3 Loaded /var/cfengine/ppkeys/localhost.priv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Install vagrant | |
| -- Setup box | |
| cd ~/tmp/vagrant_projects | |
| git clone git://gist.github.com/3006712.git cfe3-vagrant | |
| cd cfe3-vagrant | |
| -- get local copy of cfe3 masterfiles | |
| svn co https://cf3svn.its.yale.edu/repos/cf3dcsunix/trunk cfengine3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## What you Get | |
| - A working linux box | |
| - Java JDK 1.6.0_xx | |
| - JBoss 5.x.x | |
| - Jenkins with Yale-Maven-Application-Installer | |
| ## The deets | |
| - JBoss: | |
| -- Installed JBOSS_HOME=/usr/local/jboss-eap-..... | |
| -- Apps/Nodes = /usr/local/jboss-apps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| config:edit org.ops4j.pax.url.mvn | |
| config:propappend org.ops4j.pax.url.mvn.repositories ', https://repository.its.yale.edu/maven2/repo' | |
| config:update | |
| features:addurl mvn:edu.yale.its.services/yale-master-features-base/1.0.10/xml/features | |
| features:install yale-master-base |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| su - jbossa | |
| export JAVA_HOME=/usr/local/jdk1.6.0_33/ | |
| cd /usr/local/fuse-esb/bin/ | |
| ./admin create child00 | |
| ./admin create child01 | |
| cp ../etc/custom.properties ../instances/child00/etc/ | |
| cp ../etc/lock.properties ../instances/child00/etc/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## What you Get | |
| - A working linux box | |
| - Java JDK 1.6.0_xx | |
| - JBoss 5.x.x | |
| - Jenkins with Yale-Maven-Application-Installer | |
| ## The deets | |
| - JBoss: | |
| -- Installed JBOSS_HOME=/usr/local/jboss-eap-..... | |
| -- Apps/Nodes = /usr/local/jboss-apps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant::Config.run do |config| | |
| # All Vagrant configuration is done here. The most common configuration | |
| # options are documented and commented below. For a complete reference, | |
| # please see the online documentation at vagrantup.com. | |
| # Every Vagrant virtual environment requires a box to build off of. | |
| config.vm.box = "minimal-centos-62" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <beans xmlns="http://www.springframework.org/schema/beans" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns:cxf="http://camel.apache.org/schema/cxf" | |
| xmlns:jaxws="http://cxf.apache.org/jaxws" | |
| xmlns:soap="http://cxf.apache.org/bindings/soap" | |
| xmlns:http="http://cxf.apache.org/transports/http/configuration" | |
| xmlns:httpj="http://cxf.apache.org/transports/http-jetty/configuration" | |
| xmlns:sec="http://cxf.apache.org/configuration/security" | |
| xsi:schemaLocation=" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| user = ENV['OPSCODE_USER'] | |
| org = ENV['OPSCODE_ORG'] | |
| Vagrant::Config.run do |config| | |
| # All Vagrant configuration is done here. The most common configuration | |
| # options are documented and commented below. For a complete reference, | |
| # please see the online documentation at vagrantup.com. |