6、start自动启动:在/etc/rc.d/rc.local中加入如下语句:/usr/local/resin/bin/httpd.shstart和Apache整合:1)Apache安装# tar zxvf httpd-2.49.tar.gz# cd httpd-2.49# ./configure --prefix=/usr/local/httpd --enable-modules=so--enable-so --prefix--enable-modules用来指定系统允许使用的功能扩展模块的类型,这里
7、指定为so类型。--enabel-so用来指定允许使用DSO(DynamicShareObject动态共享对象)。# make# make install设置apache自动启动:将Apache的启动文件apachectl写入rc.local中/usr/local/httpd/bin/apachectlstart2)Resin安装# tar zxvf resin-3.0.4.tar.gz# cd resin-3.0.4# ./configure --prefix=/usr/local/resin -
8、-with-apache=/usr/local/httpd# make# make install此时已经生成Resin连接Apache2的.so文件了,其存在与$APACHE_HOMEe/modules/mod_caucho.soconf/httpd.conf中就会多出以下语句:LoadModulecaucho_modulesmodules/mod_caucho.so ResinConfigServerlocalhost6802 分别先后启动Resin