免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 12705 | 回复: 17
打印 上一主题 下一主题

linux上使用DirectAdmin做VPS,如何架设JSP [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-04-02 11:24 |只看该作者 |倒序浏览
10可用积分
求助:CentOS5.2系统上安装了DirectAdmin,里面的apache,mysql,php,cgi,都是默认安装,如何在他们的基础上架设JSP?

最佳答案

查看完整内容

到官网上看着来吧。http://tomcat.apache.org/tomcat-6.0-doc/setup.htmlTomcat can be run as a daemon using the jsvc tool from the commons-daemon project. Source tarballs for jsvc are included with the Tomcat binaries, and need to be compiled. Building jsvc requires a C ANSI compiler (such as GCC), GNU Autoconf, and a JDK.Before running the script, the JAVA_HOME environment variable should be set to t ...

论坛徽章:
0
2 [报告]
发表于 2009-04-02 11:24 |只看该作者
到官网上看着来吧。
http://tomcat.apache.org/tomcat-6.0-doc/setup.html
Tomcat can be run as a daemon using the jsvc tool from the commons-daemon project. Source tarballs for jsvc are included with the Tomcat binaries, and need to be compiled. Building jsvc requires a C ANSI compiler (such as GCC), GNU Autoconf, and a JDK.

Before running the script, the JAVA_HOME environment variable should be set to the base path of the JDK. Alternately, when calling the ./configure script, the path of the JDK may be specified using the --with-java parameter, such as ./configure --with-java=/usr/java.

Using the following commands should result in a compiled jsvc binary, located in the $CATALINA_HOME/bin folder. This assumes that GNU TAR is used, and that CATALINA_HOME is an environment variable pointing to the base path of the Tomcat installation.

Please note that you should use the GNU make (gmake) instead of the native BSD make on FreeBSD systems.

Download a commons-daemon binary from the Jakarta Commons download page, and place jsvc.tar.gz and commons-daemon.jar in the $CATALINA_HOME/bin folder.
               
       

    cd $CATALINA_HOME/bin
    tar xvfz jsvc.tar.gz
    cd jsvc-src
    autoconf
    ./configure
    make
    cp jsvc ..
    cd ..

       
               

Tomcat can then be run as a daemon using the following commands.
               
       

    cd $CATALINA_HOME
    ./bin/jsvc -cp ./bin/bootstrap.jar \
        -outfile ./logs/catalina.out -errfile ./logs/catalina.err \
        org.apache.catalina.startup.Bootstrap

       
               

jsvc has other useful parameters, such as -user which causes it to switch to another user after the daemon initialization is complete. This allows, for example, running Tomcat as a non privileged user while still being able to use privileged ports. jsvc --help will return the full jsvc usage information. In particular, the -debug option is useful to debug issues running jsvc.

The file $CATALINA_HOME/bin/jsvc/native/tomcat.sh can be used as a template for starting Tomcat automatically at boot time from /etc/init.d. The file is currently setup for running Tomcat 4.1.x, so it is necessary to edit it and change the classname from BootstrapService to Bootstrap.

Note that the Commons-Daemon JAR file must be on your runtime classpath to run Tomcat in this manner. The Commons-Daemon JAR file is in the Class-Path entry of the bootstrap.jar manifest, but if you get a ClassNotFoundException or a NoClassDefFoundError for a Commons-Daemon class, add the Commons-Daemon JAR to the -cp argument when launching jsvc.

论坛徽章:
0
3 [报告]
发表于 2009-04-02 12:40 |只看该作者
tomcat

论坛徽章:
0
4 [报告]
发表于 2009-04-02 13:08 |只看该作者
我的apache,php,mysql都是通过安装DirectAdmin装上的,接下来tomcat如何安装配置?我就不知道该怎么做了,谁能指点一下

论坛徽章:
0
5 [报告]
发表于 2009-04-02 13:09 |只看该作者
原帖由 myloveredhat 于 2009-4-2 13:08 发表
我的apache,php,mysql都是通过安装DirectAdmin装上的,接下来tomcat如何安装配置?我就不知道该怎么做了,谁能指点一下

网上搜索一下linux下安装tomcat,看看就OK了,或者到官网上看看。

论坛徽章:
0
6 [报告]
发表于 2009-04-02 13:35 |只看该作者
原帖由 ziggler 于 2009-4-2 13:09 发表

网上搜索一下linux下安装tomcat,看看就OK了,或者到官网上看看。

网上安装tomcat的资料确实很多,但是我的安装环境和他们不同,php和apache不是编译安装,所以不知道该如何编译tomcat

论坛徽章:
0
7 [报告]
发表于 2009-04-02 14:29 |只看该作者
原帖由 myloveredhat 于 2009-4-2 13:35 发表

网上安装tomcat的资料确实很多,但是我的安装环境和他们不同,php和apache不是编译安装,所以不知道该如何编译tomcat

tomcat不用编译可以安装。
http://blog.csdn.net/striveman/archive/2008/04/21/2313374.aspx

论坛徽章:
0
8 [报告]
发表于 2009-04-02 15:32 |只看该作者
原帖由 ziggler 于 2009-4-2 14:29 发表

tomcat不用编译可以安装。
http://blog.csdn.net/striveman/archive/2008/04/21/2313374.aspx

安装上面帖子的方法做了,之后在浏览器中输入http://localhost:8080/无法看到tomcat的log
这是否表示没有安装成功?
[root@server bin]# /usr/local/tomcat/bin/startup.sh
Using CATALINA_BASE:   /usr/local/tomcat
Using CATALINA_HOME:   /usr/local/tomcat
Using CATALINA_TMPDIR: /usr/local/tomcat/temp
Using JRE_HOME:       /usr/local/jdk

现在登录本地的web8080端口是无法显示该页

论坛徽章:
0
9 [报告]
发表于 2009-04-02 16:17 |只看该作者
原帖由 myloveredhat 于 2009-4-2 15:32 发表

安装上面帖子的方法做了,之后在浏览器中输入http://localhost:8080/无法看到tomcat的log
这是否表示没有安装成功?
[root@server bin]# /usr/local/tomcat/bin/startup.sh
Using CATALINA_BASE:   /usr/ ...

netstat一下看看8080端口开了没有

论坛徽章:
0
10 [报告]
发表于 2009-04-02 16:38 |只看该作者
原帖由 starxing 于 2009-4-2 16:17 发表

netstat一下看看8080端口开了没有

8080端口没有开启
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP