Home Database Mysql Tutorial JSP在Linux下的安装_MySQL

JSP在Linux下的安装_MySQL

Jun 01, 2016 pm 02:08 PM
apache root Install

  在 Linux 上安装Apache+ApacheJServ+JSP

安装软件的顺序如下:

I. 安装 Apache Web Server
a. 使用 RPM
如果使用 RPM 套件,在取得 Apache Web Server 套件之后,只需要输入以下命令即可完成安装:
[root@localhost root]# rpm -ivh apache-1.3.xx.i386.rpm ( xx 代表 Apache Web Server 版本 )
b. 使用 SOURCE
如果使用的是 Apache Web Server 的 Source,那么必需对 Source 进行编译并且加以安装:
[root@localhost root]# gunzip apache_1.3.xx.tar.gz ( xx 代表 Apache Web Server 版本 )
[root@localhost root]# tar zxvf apache_1.3.xx.tar ( xx 代表 Apache Web Server 版本 )
[root@localhost root]# cd apache_1.3.xx
[root@localhost apache_1.3.xx]# ./congifure \
> --prefix=/usr/local/apache/ \ ( 设定所想要安装的目录是/usr/local/apache/ )
> --enable-module=all \
> --enable-rule=SHARE_CORE
[root@localhost apache_1.3.xx]# make clean ; make ; make install
完成了以上步骤之后,基本上己经完成了 Apache Web Server 的安装。

II. 安装 JDK ( Java Development Kits )
依照下列步骤来完成 JDK 的完装:
[root@localhost root]# gunzip jdk1_2_2rc2-linux-i386.tar.gz
[root@localhost root]# tar zxvf jdk1_2_2rc2-linux-i386.tar
[root@localhost root]# mv jdk1.2.2 /usr/local/jdk122
完成上述步骤后,还需要进行环境设定:
[root@localhost root]# vi .bash_profile
...
...
JAVA_HOME=/usr/local/jdk122
PATH=$PATH:$JAVA_HOME/bin
CLASSPATH=/usr/local/jdk122/lib/tools.jar:.
export JAVA_HOME
export PATH CLASSPATH
★请注意:如果使用的是 JDK 1.1.x 版本,你的 CLASSPATH 必须设定如下:
CLASSPATH=/path/to/your/jdk/lib/classes.zip:.

III. 安装 JSDK
★请注意:如果使用的是 Java Apache RPM 版本,请跳过此节。
必须先取得并安装 JSDK ( Java Servlet Development Kits ),才能使 Java Apache 进行运作。但事实上,我们所需要的,只是 JSDK 中的一小部份 ( 一个叫 jsdk.jar 或是 servlet.jar 的档案 );现在所要做的,就是取得这个档案,并且将这个档案设定到 CLASSPATH 中:
CLASSPATH=/path/to/jsdk/lib/jsdk.jar:$CLASSPATH
export CLASSPATH

IV. 安装 Java Apache
. 使用 RPM
如果你是使用 RPM 套件,在你取得 Java Apache 套件之后,只需要输入以下命令即可完成安装:
[root@localhost root]# rpm -ivh ApacheJServ-1.1-b2.i386.rpm
a. 使用 SOURCE
如果你使用的是 Java Apache 的 Source,那么你必需对 Source 进行编译并且加以安装:
[root@localhost root]# tar zxvf ApacheJServ-1.1.tar.gz
[root@localhost root]# cd ApacheJserv-1.1
[root@localhost ApacheJserv-1.1]# ./congifure \
> --prefix=/usr/local/jsdk/ \ ( 设定你所想要安装的目录 )
> --with-apxs=/usr/local/apache/bin/apxs \( apache apxs 所在完整路径 )
> --with-jdk-home=$JAVA_HOME \
> --with-java-platform=2 \ ( 设定你所使用的 JDK 版本;1 代表 JDK 1.1.x;2 代表 JDK 1.2.x )
> --with-JSDK=/usr/local/jsdk/lib/jsdk.jar
[root@localhost ApacheJserv-1.1]# make clean ; make ; make install
★请注意:请先往下阅读【Java Apach 测试】一节。

V. 安装 GNU JSP
在取得 GNU JSP 之后,请依照下列步骤进行安装:
[root@localhost root]# gunzip gnujsp_0_9_10.tar.gz
[root@localhost root]# tar zxvf gnujsp_0_9_10.tar
[root@localhost root]# mv gnujsp-0.9.10 /usr/local/gnujsp
[root@localhost root]# cd /home/httpd/servlets
[root@localhost servlets]# mkdir compiled
[root@localhost servlets]# chown nobody.nobody compiled

完成上述指令之后,我们还须要对几个档案进行设定:
1. /etc/httpd/conf/jserv/jserv.properties
[root@localhost root]# cd /etc/httpd/conf/jserv 如果使用的是 Apache Web Server 的 Source,那么必需对 Source 进行编译并且加以安装:
[root@localhost root]# gunzip apache_1.3.xx.tar.gz ( xx 代表 Apache Web Server 版本 )
[root@localhost root]# tar zxvf apache_1.3.xx.tar ( xx 代表 Apache Web Server 版本 )
[root@localhost root]# cd apache_1.3.xx
[root@localhost apache_1.3.xx]# ./congifure \
> --prefix=/usr/local/apache/ \ ( 设定所想要安装的目录是/usr/local/apache/ )
> --enable-module=all \
> --enable-rule=SHARE_CORE
[root@localhost apache_1.3.xx]# make clean ; make ; make install
完成了以上步骤之后,基本上己经完成了 Apache Web Server 的安装。

II. 安装 JDK ( Java Development Kits )
依照下列步骤来完成 JDK 的完装:
[root@localhost root]# gunzip jdk1_2_2rc2-linux-i386.tar.gz
[root@localhost root]# tar zxvf jdk1_2_2rc2-linux-i386.tar
[root@localhost root]# mv jdk1.2.2 /usr/local/jdk122
完成上述步骤后,还需要进行环境设定:
[root@localhost root]# vi .bash_profile
...
...
JAVA_HOME=/usr/local/jdk122
PATH=$PATH:$JAVA_HOME/bin
CLASSPATH=/usr/local/jdk122/lib/tools.jar:.
export JAVA_HOME
export PATH CLASSPATH
★请注意:如果使用的是 JDK 1.1.x 版本,你的 CLASSPATH 必须设定如下:
CLASSPATH=/path/to/your/jdk/lib/classes.zip:.

III. 安装 JSDK
★请注意:如果使用的是 Java Apache RPM 版本,请跳过此节。
必须先取得并安装 JSDK ( Java Servlet Development Kits ),才能使 Java Apache 进行运作。但事实上,我们所需要的,只是 JSDK 中的一小部份 ( 一个叫 jsdk.jar 或是 servlet.jar 的档案 );现在所要做的,就是取得这个档案,并且将这个档案设定到 CLASSPATH 中:
CLASSPATH=/path/to/jsdk/lib/jsdk.jar:$CLASSPATH
export CLASSPATH

IV. 安装 Java Apache
. 使用 RPM
如果你是使用 RPM 套件,在你取得 Java Apache 套件之后,只需要输入以下命令即可完成安装:
[root@localhost root]# rpm -ivh ApacheJServ-1.1-b2.i386.rpm
a. 使用 SOURCE
如果你使用的是 Java Apache 的 Source,那么你必需对 Source 进行编译并且加以安装:
[root@localhost root]# tar zxvf ApacheJServ-1.1.tar.gz
[root@localhost root]


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP Framework Performance Comparison: The Ultimate Showdown of Speed ​​vs. Efficiency PHP Framework Performance Comparison: The Ultimate Showdown of Speed ​​vs. Efficiency Apr 30, 2024 pm 12:27 PM

According to benchmarks, Laravel excels in page loading speed and database queries, while CodeIgniter excels in data processing. When choosing a PHP framework, you should consider application size, traffic patterns, and development team skills.

How to conduct concurrency testing and debugging in Java concurrent programming? How to conduct concurrency testing and debugging in Java concurrent programming? May 09, 2024 am 09:33 AM

Concurrency testing and debugging Concurrency testing and debugging in Java concurrent programming are crucial and the following techniques are available: Concurrency testing: Unit testing: Isolate and test a single concurrent task. Integration testing: testing the interaction between multiple concurrent tasks. Load testing: Evaluate an application's performance and scalability under heavy load. Concurrency Debugging: Breakpoints: Pause thread execution and inspect variables or execute code. Logging: Record thread events and status. Stack trace: Identify the source of the exception. Visualization tools: Monitor thread activity and resource usage.

How to add a server in eclipse How to add a server in eclipse May 05, 2024 pm 07:27 PM

To add a server to Eclipse, follow these steps: Create a server runtime environment Configure the server Create a server instance Select the server runtime environment Configure the server instance Start the server deployment project

Application of algorithms in the construction of 58 portrait platform Application of algorithms in the construction of 58 portrait platform May 09, 2024 am 09:01 AM

1. Background of the Construction of 58 Portraits Platform First of all, I would like to share with you the background of the construction of the 58 Portrait Platform. 1. The traditional thinking of the traditional profiling platform is no longer enough. Building a user profiling platform relies on data warehouse modeling capabilities to integrate data from multiple business lines to build accurate user portraits; it also requires data mining to understand user behavior, interests and needs, and provide algorithms. side capabilities; finally, it also needs to have data platform capabilities to efficiently store, query and share user profile data and provide profile services. The main difference between a self-built business profiling platform and a middle-office profiling platform is that the self-built profiling platform serves a single business line and can be customized on demand; the mid-office platform serves multiple business lines, has complex modeling, and provides more general capabilities. 2.58 User portraits of the background of Zhongtai portrait construction

The evasive module protects your website from application layer DOS attacks The evasive module protects your website from application layer DOS attacks Apr 30, 2024 pm 05:34 PM

There are a variety of attack methods that can take a website offline, and the more complex methods involve technical knowledge of databases and programming. A simpler method is called a "DenialOfService" (DOS) attack. The name of this attack method comes from its intention: to cause normal service requests from ordinary customers or website visitors to be denied. Generally speaking, there are two forms of DOS attacks: the third and fourth layers of the OSI model, that is, the network layer attack. The seventh layer of the OSI model, that is, the application layer attack. The first type of DOS attack - the network layer, occurs when a large number of of junk traffic flows to the web server. When spam traffic exceeds the network's ability to handle it, the website goes down. The second type of DOS attack is at the application layer and uses combined

How to deploy and maintain a website using PHP How to deploy and maintain a website using PHP May 03, 2024 am 08:54 AM

To successfully deploy and maintain a PHP website, you need to perform the following steps: Select a web server (such as Apache or Nginx) Install PHP Create a database and connect PHP Upload code to the server Set up domain name and DNS Monitoring website maintenance steps include updating PHP and web servers, and backing up the website , monitor error logs and update content.

How to leverage Kubernetes Operator simplifiy PHP cloud deployment? How to leverage Kubernetes Operator simplifiy PHP cloud deployment? May 06, 2024 pm 04:51 PM

KubernetesOperator simplifies PHP cloud deployment by following these steps: Install PHPOperator to interact with the Kubernetes cluster. Deploy the PHP application, declare the image and port. Manage the application using commands such as getting, describing, and viewing logs.

How to implement PHP security best practices How to implement PHP security best practices May 05, 2024 am 10:51 AM

How to Implement PHP Security Best Practices PHP is one of the most popular backend web programming languages ​​used for creating dynamic and interactive websites. However, PHP code can be vulnerable to various security vulnerabilities. Implementing security best practices is critical to protecting your web applications from these threats. Input validation Input validation is a critical first step in validating user input and preventing malicious input such as SQL injection. PHP provides a variety of input validation functions, such as filter_var() and preg_match(). Example: $username=filter_var($_POST['username'],FILTER_SANIT

See all articles