Quercus: linode

From Resin 3.0

(Difference between revisions)
Jump to: navigation, search
Line 8: Line 8:
 
# Download Resin Open Source [http://www.caucho.com/download]<pre>wget http://www.caucho.com/download/resin-3.1.6.tar.gz</pre>
 
# Download Resin Open Source [http://www.caucho.com/download]<pre>wget http://www.caucho.com/download/resin-3.1.6.tar.gz</pre>
 
# Untar Resin into /usr/local/share
 
# Untar Resin into /usr/local/share
 +
# Create a "resin" user:<pre>useradd -m resin</pre>
 +
# Change the ownership of the Resin installation to "resin": <pre>chown -R resin:resin resin-3.1.6</pre>
 
# Create a link from /usr/local/share/resin to the Resin directory
 
# Create a link from /usr/local/share/resin to the Resin directory
 
# Edit /usr/local/share/resin/conf/resin.conf to change the host-deploy directory:<pre><host-deploy path="/var/www/hosts"></pre>
 
# Edit /usr/local/share/resin/conf/resin.conf to change the host-deploy directory:<pre><host-deploy path="/var/www/hosts"></pre>
 
# Create a host directory: /var/www/hosts/<host-name>
 
# Create a host directory: /var/www/hosts/<host-name>
 +
# Change the ownership of /var/www to "resin": <pre>chown -R resin:resin /var/www</pre>
 +
# Redirect traffic from port 80 to port 8080 using iptables: <pre>iptables -t nat -A PREROUTING -i eth0 -p tcp -m --dport 80 -j REDIRECT --to-ports 8080
 +
# Change to user "resin"
 
# Create the web application tree: /var/www/hosts/<host-name>/webapps/ROOT/WEB-INF
 
# Create the web application tree: /var/www/hosts/<host-name>/webapps/ROOT/WEB-INF
 
# Download Drupal:<pre>wget http://ftp.osuosl.org/pub/drupal/files/projects/drupal-6.2.tar.gz</pre>
 
# Download Drupal:<pre>wget http://ftp.osuosl.org/pub/drupal/files/projects/drupal-6.2.tar.gz</pre>

Revision as of 16:09, 15 May 2008

Running Quercus hosted by linode.com


  1. Obtain an account from linode.com
  2. Log in to the account and create an Ubuntu image
  3. Log into your linode and install the following packages:
    apt-get install ubuntu-minimal ubuntu-standard sun-java6-jdk mysql-server postfix iptables
  4. Download Resin Open Source [1]
    wget http://www.caucho.com/download/resin-3.1.6.tar.gz
  5. Untar Resin into /usr/local/share
  6. Create a "resin" user:
    useradd -m resin
  7. Change the ownership of the Resin installation to "resin":
    chown -R resin:resin resin-3.1.6
  8. Create a link from /usr/local/share/resin to the Resin directory
  9. Edit /usr/local/share/resin/conf/resin.conf to change the host-deploy directory:
    <host-deploy path="/var/www/hosts">
  10. Create a host directory: /var/www/hosts/<host-name>
  11. Change the ownership of /var/www to "resin":
    chown -R resin:resin /var/www
  12. Redirect traffic from port 80 to port 8080 using iptables:
    iptables -t nat -A PREROUTING -i eth0 -p tcp -m --dport 80 -j REDIRECT --to-ports 8080
    
# Change to user "resin" # Create the web application tree: /var/www/hosts/<host-name>/webapps/ROOT/WEB-INF # Download Drupal:<pre>wget http://ftp.osuosl.org/pub/drupal/files/projects/drupal-6.2.tar.gz
  1. Untar Drupal in /var/www/hosts/<host-name>/webapps/ROOT
  2. Download MySQL Connector/J (http://dev.mysql.com/downloads/connector/j/5.1.html) and place the jar in /var/www/hosts/<host-name>/webapps/ROOT/WEB-INF/lib
  3. Create the following /var/www/hosts/<host-name>/webapps/ROOT/WEB-INF/resin-web.xml:
<web-app xmlns="http://caucho.com/ns/resin">
  <database jndi-name="jdbc/drupal">
    <driver type="com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource">
      <url>jdbc:mysql://localhost:3306/drupal</url>
      <user>root</user>
      <password></password>
    </driver>
  </database>

  <servlet servlet-name="php"
           servlet-class="com.caucho.quercus.servlet.QuercusServlet">
    <init database="jdbc/drupal"/>
  </servlet>

  <servlet-mapping url-pattern="*.php" servlet-name="php"/>
  <welcome-file-list><welcome-file>index.php</welcome-file></welcome-file-list>

  <rewrite-dispatch>
    <dispatch regexp="\.(php|gif|css|jpg|png|ico|js)"/>
    <forward regexp="^/" target="/index.php?q="/>
  </rewrite-dispatch>
</web-app>
  1. Create a database for Drupal in MySQL
    mysql -u root
    > CREATE DATABASE drupal;
  2. Start Resin:
    java -jar /usr/local/share/resin/lib/resin.jar start
  3. Browse to your host and configure Drupal as directed.
Personal tools