天天看點

Resin安裝異常

 首先從http://caucho.com/products/resin/download 下載下傳下來最新的resin-pro-4.0.43.tar.gz

 開始沒有太在意使用

./configure --prefix=/home/servers/
make
make install
           

不加思索的安裝完畢.

結果再執行./resin.sh start時報錯了

[[email protected] bin]#./resin.sh  start
Unable to access jarfile ./../lib/resin.jar
           

 原因是安裝resin時需要指定JDK的安裝路徑

./configure --prefix=/home/servers/resin --with-java-home=/home/soft/jdk1.6.0_45
make
make install
           

 就搞定了