Quercus: linode
From Resin 3.0
Running Quercus hosted by linode.com
- Obtain an account from linode.com
- Log in to the account and create an Ubuntu image
- Log into your linode and install the following packages:
apt-get install ubuntu-minimal ubuntu-standard sun-java6-jdk mysql-server postfix iptables
- Download Resin Open Source [1]
wget http://www.caucho.com/download/resin-3.1.6.tar.gz
- Untar Resin into /usr/local/share
- 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:
<host-deploy path="/var/www/hosts">
- Create a host directory: /var/www/hosts/<host-name>
- Create the web application tree: /var/www/hosts/<host-name>/webapps/ROOT/WEB-INF
- Download Drupal:
wget http://ftp.osuosl.org/pub/drupal/files/projects/drupal-6.2.tar.gz
- Untar Drupal in /var/www/hosts/<host-name>/webapps/ROOT
- Create the following 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>
- Create a database for Drupal in MySQL
mysql -u root
> CREATE DATABASE drupal;
- Start Resin:
java -jar /usr/local/share/resin/lib/resin.jar start