当前位置: 技术问答>linux和unix
redhat 9.01 怎样配置jsp运行环境?
来源: 互联网 发布时间:2015-04-18
本文导语: 我安装了redhat 9.01(完全安装),里面包含了apache和Mysql,可是我不能找到他们的文件夹,他们的文件夹在哪里? 如果用apache做jsp的服务器,是不是还得装tomcat,在redhat9.0中没有么?如果有,在哪里? 如果自己装tomcat,是不...
我安装了redhat 9.01(完全安装),里面包含了apache和Mysql,可是我不能找到他们的文件夹,他们的文件夹在哪里?
如果用apache做jsp的服务器,是不是还得装tomcat,在redhat9.0中没有么?如果有,在哪里?
如果自己装tomcat,是不是必须得装jdk才能运行?
redhat9.0中包含jdk么?如果包含,在哪里?
那里有关于redhat9.0的配置说明?
我是个linux的新手!!请您说的详细一些~!谢谢!!
|
以下是手记,绝对没有问题,为 redhat 7.2, 对你的9.01 是一样的。
毕业实习:JSP开发环境TOMCAT系统安装调试报告
JSP开发环境TOMCAT系统安装调试报告
1.说明
本文档是jsp开发环境TOMCAT系统安装调试的详细过程,作为系统管理、维护、分析的重要依据。
2. 软件准备:
Redhat Linux7.2(内核LINUX2.4.7)
Redhat发行的Redhat Linux7.2光盘套件。
proftp-1_2_5.tar.gz
下载网址http://jakarta.apache.org/builds/jakarta-tomcat/release/v3.1.1/bin
SSHD-4_0_3-i386.rpm
Redhat发行的Redhat Linux7.2光盘套件中。
j2sdk-1.4.0-linux.bin
下载网址:http://java.sun.com/products/jdk/1.4/download-linux.html
jakarta-tomcat-4.1.18.tar.gz
下载网址:http://jakarta.apache.org/builds/jakarta-tomcat/release
3.软件安装和配置。
3.1 安装Redhat Linux7.2.
3.1.1 安装方法:本地光盘启动安装。
3.1.2 系统语言选择:ENGLISH(USA)
3.1.3 选择引导程序:GRUB
3.1.4 硬盘分区:在硬盘中划分8G空间,分区规划如下:
文件系统 类型 大小(M) 格式化
/boot EXT2 128M YES
(交换分区) SWAP 512M YES
/tmp EXT2 512M YES
/var EXT2 1024M YES
/ EXT2 1024M YES
/usr EXT2 2048M YES
/home EXT2 2944M YES
(分区程序划分过程可能与上述数据有差别,可以做出局部调整,要作详细记录)
3.1.5 系统安装方式:CUSTOM
3.1.6 系统软件包选择:
默认的X-Window System软件包。
默认的KDE软件包
默认的NetWork Support软件包
默认的Kernel Develop软件包
其他软件包不做选择。
要点:安装过程做出的各项选择的记录。
3.1.7 制作启动系统的引导盘:安装结束系统提示是否制作引导盘,把一张干净的软盘插入后,回答YES。
3.1.8 安装过程结束后,重新启动计算机。
3.2 配置LINUX.
在做下列配置管理之前,使用mkdir命令在/home目录中创建/home/bak目录,用来存放备份目录和备份文件
,下列提到的配置文件,在备份时在原文件名后加后缀".old"作标识。
3.2.1 用户管理:
1)设置超级用户root密码:
#passwd root
2)增加组及用户:
#groupadd qxh
#useradd -G qxh qxh
#passwd qxh
3)备份用户和组文件
#mkdir /home/bak/usr_mng
#cp /etc/passwd /home/bak/usr_mng/passwd.old
#cp /etc/group /home/bak/usr_mng/group.old
3.2.2 引导管理:
1)制作引导系统文件副本:
#cp /boot/vmlinuz-2.4.7-10 /boot/vmlinuz-2.4.7-10.bak
#cp /boot/initrd-2.4.7-10.img /boot/initrd-2.4.7-10.img.bak
2)修改grub引导文件/boot/grub/grub.conf
#vi /boot/grub/grub.conf
修改如下:
default=0(选择grub默认引导选项的标号)
timeout=10
splashimage=(hd0,0)/grub/splash.xpm.gz
title Red Hat Linux (2.4.7-10)
root (hd0,0)
kernel /vmlinuz-2.4.7-10 ro root=/dev/sda2
initrd /initrd-2.4.7-10.img
title Red Hat Linux bak(2.4.7-10)
root (hd0,0)
kernel /vmlinuz-2.4.7-10.bak ro root=/dev/sda2
initrd /initrd-2.4.7-10.img.bak
3)备份引导系统文件:
#mkdir /home/bak/boot_mng
#cp /boot/grub/grub.conf /home/bak/boot_mng/grub.conf.old
3.2.2 网络管理:
1)创建备份目录:
#mkdir /home/bak/net_mng
2)配置网卡:
#vi /etc/sysconfig/network-script/ifcfg-eth0
设置如下:
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.1.52
NETMASK=255.255.255.0
GATEWAY=192.168.1.2
备份文件:
#cp /etc/sysconfig/network-script/ifcfg-eth0 /home/bak/net_mng/ifcfg-eth0.old
3)TCP/IP设置
设置主机的IP地址和对应的全域名:
#vi /etc/hosts
设置如下:
# that require network functionality will fail.
127.0.0.1 f52 localhost.localdomain localhost
192.168.1.51 f51 f51.localdomain
192.168.1.52 f52 f52.localdomain
192.168.1.53 f53 f53.localdomain
设置网络地址和它的网络名称:
#vi /etc/sysconfig/networks
设置如下:
NETWORKING=yes
HOSTNAME=f51
GATEWAY=192.168.1.2
设置解析器:
#vi /etc/host.conf
设置如下:
order hosts,bind
设置域名服务器的名称及其IP地址,还有缺省查找的域名:
#vi /etc/resolv.conf
设置如下:
search zist.edu.cn
nameserver 210.32.24.22
备份文件:
#cp /etc/host /home/bak/net_mng/host.old
#cp /etc/sysconfig/networks /home/bak/net_mng/networks.old
#cp /etc/host.conf /home/bak/net_mng/host.conf.old
#cp /etc/resolv.conf /home/bak/net_mng/resolv.conf.old
4) 网络服务程序管理和防火墙:
#setup
设置防火墙:
进入"Firewall configuration"设置"Security Level"为"High",进入"Customize"项设置如下
You can customize your firewall in two ways. First, you can select to x
x allow all traffic from certain network interfaces. Second, you can allow x
x certain protocols explicitly through the firewall. Specify additional x
x ports in the form 'service:protocol', such as 'imap:tcp'. x
x x
x Trusted Devices: [*] eth0 x
x x
x Allow incoming: [ ] DHCP [*] SSH [ ] Telnet x
x [*] WWW (HTTP) [ ] Mail (SMTP) [*] FTP x
x Other ports _________________________ x
x x
x x
x x OK x x
x x
x x
x
设置完成选择“ok”退出
设置启动服务程序:
进入"System services",设置xinetd程序启动的服务选项:把
"xinetd","ipchains","iptables","network","syslog"选项选上,其他的服务去除,选择“ok”退出。
3.2.3 配置完成,重新启动计算机。
3.3 安装配置proftp
3.3.1 安装proftp
解压安装到/usr/local/proftp
#cp proftp-1_2_5.tar.gz /home/software
#cd /home/software
#tar zvfx proftp-1_2_5.tar.gz
#cd proftp-1_2_5
#./configure --prefix=/usr/local/proftp
#make
#make install
#make clean
3.3.2 配置proftp
#cd /usr/local/proftp/etc/
#vi proftp.conf
配置如下:
# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.
ServerName "ProFTPD Default Installation"
ServerType standalone
DefaultServer on
# Port 21 is the standard FTP port.
Port 21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
毕业实习:JSP开发环境TOMCAT系统安装调试报告
JSP开发环境TOMCAT系统安装调试报告
1.说明
本文档是jsp开发环境TOMCAT系统安装调试的详细过程,作为系统管理、维护、分析的重要依据。
2. 软件准备:
Redhat Linux7.2(内核LINUX2.4.7)
Redhat发行的Redhat Linux7.2光盘套件。
proftp-1_2_5.tar.gz
下载网址http://jakarta.apache.org/builds/jakarta-tomcat/release/v3.1.1/bin
SSHD-4_0_3-i386.rpm
Redhat发行的Redhat Linux7.2光盘套件中。
j2sdk-1.4.0-linux.bin
下载网址:http://java.sun.com/products/jdk/1.4/download-linux.html
jakarta-tomcat-4.1.18.tar.gz
下载网址:http://jakarta.apache.org/builds/jakarta-tomcat/release
3.软件安装和配置。
3.1 安装Redhat Linux7.2.
3.1.1 安装方法:本地光盘启动安装。
3.1.2 系统语言选择:ENGLISH(USA)
3.1.3 选择引导程序:GRUB
3.1.4 硬盘分区:在硬盘中划分8G空间,分区规划如下:
文件系统 类型 大小(M) 格式化
/boot EXT2 128M YES
(交换分区) SWAP 512M YES
/tmp EXT2 512M YES
/var EXT2 1024M YES
/ EXT2 1024M YES
/usr EXT2 2048M YES
/home EXT2 2944M YES
(分区程序划分过程可能与上述数据有差别,可以做出局部调整,要作详细记录)
3.1.5 系统安装方式:CUSTOM
3.1.6 系统软件包选择:
默认的X-Window System软件包。
默认的KDE软件包
默认的NetWork Support软件包
默认的Kernel Develop软件包
其他软件包不做选择。
要点:安装过程做出的各项选择的记录。
3.1.7 制作启动系统的引导盘:安装结束系统提示是否制作引导盘,把一张干净的软盘插入后,回答YES。
3.1.8 安装过程结束后,重新启动计算机。
3.2 配置LINUX.
在做下列配置管理之前,使用mkdir命令在/home目录中创建/home/bak目录,用来存放备份目录和备份文件
,下列提到的配置文件,在备份时在原文件名后加后缀".old"作标识。
3.2.1 用户管理:
1)设置超级用户root密码:
#passwd root
2)增加组及用户:
#groupadd qxh
#useradd -G qxh qxh
#passwd qxh
3)备份用户和组文件
#mkdir /home/bak/usr_mng
#cp /etc/passwd /home/bak/usr_mng/passwd.old
#cp /etc/group /home/bak/usr_mng/group.old
3.2.2 引导管理:
1)制作引导系统文件副本:
#cp /boot/vmlinuz-2.4.7-10 /boot/vmlinuz-2.4.7-10.bak
#cp /boot/initrd-2.4.7-10.img /boot/initrd-2.4.7-10.img.bak
2)修改grub引导文件/boot/grub/grub.conf
#vi /boot/grub/grub.conf
修改如下:
default=0(选择grub默认引导选项的标号)
timeout=10
splashimage=(hd0,0)/grub/splash.xpm.gz
title Red Hat Linux (2.4.7-10)
root (hd0,0)
kernel /vmlinuz-2.4.7-10 ro root=/dev/sda2
initrd /initrd-2.4.7-10.img
title Red Hat Linux bak(2.4.7-10)
root (hd0,0)
kernel /vmlinuz-2.4.7-10.bak ro root=/dev/sda2
initrd /initrd-2.4.7-10.img.bak
3)备份引导系统文件:
#mkdir /home/bak/boot_mng
#cp /boot/grub/grub.conf /home/bak/boot_mng/grub.conf.old
3.2.2 网络管理:
1)创建备份目录:
#mkdir /home/bak/net_mng
2)配置网卡:
#vi /etc/sysconfig/network-script/ifcfg-eth0
设置如下:
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR=192.168.1.52
NETMASK=255.255.255.0
GATEWAY=192.168.1.2
备份文件:
#cp /etc/sysconfig/network-script/ifcfg-eth0 /home/bak/net_mng/ifcfg-eth0.old
3)TCP/IP设置
设置主机的IP地址和对应的全域名:
#vi /etc/hosts
设置如下:
# that require network functionality will fail.
127.0.0.1 f52 localhost.localdomain localhost
192.168.1.51 f51 f51.localdomain
192.168.1.52 f52 f52.localdomain
192.168.1.53 f53 f53.localdomain
设置网络地址和它的网络名称:
#vi /etc/sysconfig/networks
设置如下:
NETWORKING=yes
HOSTNAME=f51
GATEWAY=192.168.1.2
设置解析器:
#vi /etc/host.conf
设置如下:
order hosts,bind
设置域名服务器的名称及其IP地址,还有缺省查找的域名:
#vi /etc/resolv.conf
设置如下:
search zist.edu.cn
nameserver 210.32.24.22
备份文件:
#cp /etc/host /home/bak/net_mng/host.old
#cp /etc/sysconfig/networks /home/bak/net_mng/networks.old
#cp /etc/host.conf /home/bak/net_mng/host.conf.old
#cp /etc/resolv.conf /home/bak/net_mng/resolv.conf.old
4) 网络服务程序管理和防火墙:
#setup
设置防火墙:
进入"Firewall configuration"设置"Security Level"为"High",进入"Customize"项设置如下
You can customize your firewall in two ways. First, you can select to x
x allow all traffic from certain network interfaces. Second, you can allow x
x certain protocols explicitly through the firewall. Specify additional x
x ports in the form 'service:protocol', such as 'imap:tcp'. x
x x
x Trusted Devices: [*] eth0 x
x x
x Allow incoming: [ ] DHCP [*] SSH [ ] Telnet x
x [*] WWW (HTTP) [ ] Mail (SMTP) [*] FTP x
x Other ports _________________________ x
x x
x x
x x OK x x
x x
x x
x
设置完成选择“ok”退出
设置启动服务程序:
进入"System services",设置xinetd程序启动的服务选项:把
"xinetd","ipchains","iptables","network","syslog"选项选上,其他的服务去除,选择“ok”退出。
3.2.3 配置完成,重新启动计算机。
3.3 安装配置proftp
3.3.1 安装proftp
解压安装到/usr/local/proftp
#cp proftp-1_2_5.tar.gz /home/software
#cd /home/software
#tar zvfx proftp-1_2_5.tar.gz
#cd proftp-1_2_5
#./configure --prefix=/usr/local/proftp
#make
#make install
#make clean
3.3.2 配置proftp
#cd /usr/local/proftp/etc/
#vi proftp.conf
配置如下:
# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.
ServerName "ProFTPD Default Installation"
ServerType standalone
DefaultServer on
# Port 21 is the standard FTP port.
Port 21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022