Somehow Subversion repository based on BDB tends to break at least in our case working on Fedora Core 3 with Trac 0.8.1 Usually an indication of this is either your Subversion client (TortoiseSVN, svn, etc) stops responding for no reason or you cannot browse any sources using Trac “Browse” link.
Here are the steps one [...]
Archives for May 2005
Repairing broken Subversion repository
Liferay Portal on Tomcat 5.5.x and Tomcat 5.0.x
I don’t know what kind of support policy Liferay advocates, but we arenot going to use their product for the following reasons:
It seems impossible to find out how or whether it is possible to run Liferay Portal with Tomcat 5.5.x I’ve checked their mailing list, forum, web site – nothing. Some people asked about Tomcat [...]
MyEclipse 4.0 M1, finally…
On Monday, MyEclipse 4.0M1 finally got released. Now in addition to Struts, JSF, and Hibernate, it supports Tapestry via Spindle integration and UML modeling. The next milestone should have Spring integration and graphical JSP designer. Well, let’s see how it goes.
Diving into Tapestry
Starting this week we started looking at Jakarta Tapestry. The main motivation behind this is the fact that it relies on ordinary HTML tags so we can clearly separate the roles of designer, HTML programmer, and Java developer. It’s been painful to use Struts in graphically rich Web applications and JSF didn’t make it better [...]
Making Apache 2.x with custom-built PHP 4.x happy on FC3 with no original PHP RPMs installed
After uninstalling original PHP 4.x RPMs on FC3 and install a custom-built version, I’ve discovered that our PHP applications don’t work when I try to use them, instead a directory listing or the contents of the PHP files are displayed. This probably has to do with the fact that httpd.conf was updated after removing native [...]
Adding cyrus-imapd users with only imaps enabled
The first step is to enable non-secure imap. In order to do this, /etc/cyrus.conf should have:
imap cmd=”imapd” listen=”imap” prefork=5
instead of
#imap cmd=”imapd” listen=”imap” prefork=5
After this, cyrus-imapd should be restarted with:
/sbin/service cyrus-imapd restart
Now we can connect to non-secure imap service:
cyradm –user cyrus –server localhost –auth plain
and add a user:
createmailbox user.logon
We are done.
The last thing [...]
Installing JK Connector on Fedora Core 3 with Tomcat 5.5.x and Apache 2.0.x
In order to build JK Connector on Fedora Core 3, httpd-devel package containing apxs must be installed.
First, download JK Connector sources from http://www.apache.org/dist/jakarta/tomcat-connectors/jk/source/
Next, go to jk/native directory and execute the following commands to build the connector:
./configure –with-apxs=/usr/sbin/apxs
make
su -c “make install”
Last, go to /etc/httpd/conf.d and create jk.conf file with the following example contents:
LoadModule jk_module modules/mod_jk.so
JkWorkersFile /opt/jakarta-tomcat-5.5.9/conf/workers.properties.minimal
JkLogFile [...]
Posts