I'm using Ubunutu 9.10 and nabbed the following files:
Install Java
user@my-netbook: cp ~user/Downloads/jre-6u17-linux-i586.bin /usr/local/ user@my-netbook: cd /usr/local user@my-netbook: ./jre-6u17-linux-i586.bin user@my-netbook: ln -s jre1.6.0_17 java
I want the JAVA_HOME and JRE_HOME environment variables available to all users so I create the following file:
user@my-netbook: sudo vi /etc/profile.d/java.sh
and populate it with the following contents:
JAVA_HOME=/usr/local/java export JAVA_HOME JRE_HOME=/usr/local/java export JRE_HOME PATH=$PATH:$JAVA_HOME/bin export PATH
Install Tomcat
user@my-netbook: cp ~user/Downloads/apache-tomcat-6.0.20.tar.gz /usr/local/ user@my-netbook: cd /usr/local user@my-netbook: tar -xzvf apache-tomcat-6.0.20.tar.gz user@my-netbook: ln -s apache-tomcat-6.0.20 tomcat
Then check that Tomcat starts ok:
user@my-netbook: cd /usr/local/tomcat/bin user@my-netbook: ./startup.sh
and check you can access http://localhost:8080, where you should see:
Now shutdown Tomcat:
user@my-netbook: cd /usr/local/tomcat/bin user@my-netbook: ./shutdown.sh
Install Shindig
user@my-netbook: cd /usr/local/tomcat/webapps user@my-netbook: mv ROOT/ ROOT.BCK user@my-netbook: cp ~user/Downloads/shindig-server-1.1-BETA5-incubating.war /usr/local/tomcat/webapps/ROOT.WAR user@my-netbook: /usr/local/tomcat/bin/startup.sh
Check that Shindig is working by visiting the following URL in your browser:
http://localhost:8080/gadgets/ifr?url=http://www.labpixies.com/campaigns/todo/todo.xml
and you should see:
Hopefully that should be it.
3 comments:
cheers andy : wasnt understanding this
user@my-netbook: cp ~user/Downloads/shindig-server-1.1-BETA5-incubating.war /usr/local/tomcat/webapps/ROOT.WAR
but now have it working. cheers for the post!
peter
No probs. Deploying as ROOT.war is just me being lazy as a quick deployment test and not wanting to faff with different contexts.
Yeah, same problem! Thanks for the post!
Post a Comment