领先的中文IT技术网站    IT技术从现在起飞

飞诺旗下: 技术社区 | 在线电子书 | 在线试题 | 资源下载 | 飞诺搜索 | 技术博客
用户名: 密   码:
   飞诺网 加入收藏
飞诺网 Linux 新闻频道 开发频道 系统频道 服务器 网络频道 网络安全 Java频道 C/C++ PHP开发 电子书 资源下载 社 区 博 客 在线试题
操作系统 Linux Windows xp Windows 2003 Windows 2000/NT DOS Mac OS X Vista FreeBSD Solaris SCO UNIX AIX Windows 2008
编程开发 JAVA C/C++ C++ VC C语言 VB C# Delphi Foxpro 汇编 shell编程 游戏开发 软件工程师 WEB开发 PHP ASP Asp.net JSP AJAX CGI JavaScript HTML CSS 数据库 MSSQL Mysql Oracle Access Sybase DB2 sql2005 Office Word Excel Powerpoint Wps 认证考试 二级C语言 三级网络 程序员 网络工程师 思科认证

您当前的位置:飞诺网 >> linux >> Linux应用技巧

配置SunONEWebServer支持JSP,PHP,CGI

www.firnow.com    时间 : 2007-02-11  作者:佚名   编辑:本站 点击:   [ 评论 ]


  目前在linux系统上,存在两个最强的web服务器,一个是apache一个就是,sun的Sun ONE Web Server,在网络上最apache的各种应用
  写的比较多,但是Sun ONE Web Server 则比较少,今日闲来无事,便写了一个简单的配置教程
  
  所需软件(因为软件较大无法提供本地下载)
  1,Sun ONE Web Server 6.1
  
  下载地址
  
  http://wwws.sun.com/software/download/products/3f4f998d.html,在sun的主页上,是OEM版,60多M下载需要注册
  
  2,php 4.3.6
  
  x下载地址
  http://cn.php.net/get/php-4.3.6.tar.bz2/from/a/mirror
  
  首先安装SUN ONE web server ,解压缩sun-webserver61-rh72.tar.gz这个软件包,到一个目录里,例如sun,然后运行安装程序
  
  cd /sun
  tar -zxf sun-webserver61-rh72.tar.gz
  ./setup
  
  以root进行安装
  
  过程如下,基本安默认安装就行
  Would you like to continue with installation? : 回车
  Do you agree to the license terms? :yes
  
  Choose an installation type:
  
  1. Express installation
  Allows you to quickly install the servers using the most
  common options and pre-defined defaults. Useful for quick
  evaluation of the products.
  
  2. Typical installation
  Allows you to specify common defaults and options.
  
  3. Custom installation
  Allows you to specify more advanced options. This is
  recommended for experienced server administrators only.
  
  To accept the default shown in brackets, press the Enter key.
  
  Choose an installation type : 回车(建议安典型安装)
  
  Install location :回车(默认安装目录)
  Sun ONE Web Server components:
  
  Components with a number in () contain additional subcomponents
  which you can select using subsequent screens.
  
  1. Sun ONE Web Server, Enterprise Edition (2)
  
  Specify the components you wish to install :回车(安装Sun ONE Web Server, Enterprise Edition)
  
  Components with a number in () contain additional subcomponents
  which you can select using subsequent screens.
  
  1. Server Core
  2. Java Development Kit
  
  Specify the components you wish to install : 回车(安装代码和开发包)
  
  To accept the default shown in brackets, press the Enter key.
  
  Computer name :回车(设置域名,默认主机名)
  
  System User :回车(设置启动这个服务的用户)
  System Group :回车(设置启动这个服务的用户组)
  Run Web Server Administration Server as :回车(运行管理服务的用户)
  Web Server Admin Server User Name :回车(web管理员用户名)
  Web Server Admin Server Password:(密码)
  Web Server Admin Server Password (again):(确认密码)
  Web Server Admin Server Port :回车(web管理的端口)
  Web Server Port :回车(运行web服务的端口一般是80,因为我的服务器装了apache,所以改成了88)
  Web Server Content Root :回车(网页根目录)
  Web Server Start On Boot :回车(引导时启动)
  然后会拷贝安装文件,一切顺利,就会安装完毕。
  
  因为sun one web server本身支持jsp,所以不用配置。
  下面介绍如何,配置cgi和php
  
  首先配置CGI
  cd /opt/SUNWwbsvr/https-lee/config
  进入虚拟服务器的配置目录
  vi obj.conf
  打开配置文件,并加入如下内容
  在的下面加入
  Service fn=\"send-cgi\" type=\"magnus-internal/cgi\" user=\"$user\" group=\"$group\" dir=\"$dir\" chroot=\"$chroot\" nice=\"$nice\"
  
  在文件最后加入
  
  ObjectType fn=\"force-type\" type=\"magnus-internal/cgi\"
  Service fn=\"send-cgi\" user=\"$user\" group=\"$group\" dir=\"$dir\" chroot=\"$chroot\" nice=\"$nice\"
  
  如果这段有,就不必加入了
  
  然后运行
  cd /opt/SUNWwbsvr/https-lee
  ./restart重启动服务器。
  这样在sun one web server就能运行cgi程序了,sun one web server本身是支持CGI的,这段配置是将CGI功能打开
  
  配置php
  首先加压缩软件包
  tar -jxf php-4.3.6.tar.bz2
  cd php-4.3.6
  ./configure --with-nsapi=/opt/SUNWwbsvr --with-mysql=/usr/local/mysql 第一个参数是创建一个sun one的nsapi插件第二个参数是让php在sun one支持mysql
  
  make
  
  因为我已经安装了PHP,所以并没有运行make install 进行安装以避免以前的PHP配置,如果您没有安装PHP轻运行make install 进行安装
  
  make完毕后在php-4.3.6/libs中会有一个libphp4.so这个文件就是我们要的nsapi插件
  将这个文件拷贝到/opt/SUNWwbsvr/bin
  cp libphp4.so /opt/SUNWwbsvr/bin
  这样,插件已经制作完成
  最后将php-4.3.6目录下的php.ini-dist拷贝到/etc下并改名php.ini
  cp php-4.3.6/php.ini-dist /etc/php.ini
  下面开始配置sun one web server
  
  cd /opt/SUNWwbsvr/https-lee/config
  vi obj.conf
  在的下面加入
  Service fn=\"php4_execute\" type=\"magnus-internal/x-httpd-php\"
  
  并在文件末尾加入
  
  ObjectType fn=\"force-type\" type=\"magnus-internal/x-httpd-php\"
  Service fn=\"php4_execute\" \"
  
  保存文件
  
  然后打开 magnus.conf
  
  vi magnus.conf
  在文件末尾加入
  Init fn=\"load-modules\" funcs=\"php4_init,php4_execute,php4_auth_trans\" shlib=\"/opt/SUNWwbsvr/bin/libphp4.so\"
  Init fn=\"php4_init\" errorString=\"Failed to initialize PHP!\"
  保存文件
  
  打开mime.types
  vi mime.types
  在文件末尾加入
  type=magnus-internal/x-httpd-php exts=php,php3
  保存文件
  
  最后
  cd /opt/SUNWwbsvr/https-lee
  ./restart重启动服务器
  
  这样服务器基本配置完成
  
  有些东西也可以使用web在线配置。
  如果大家有 问题在一起讨论
  http://www.leftworld.net/shequ/forums.cgi?forum=17
  我提供给大家一个配置好的配置文件仅供参考。也可以拿来稍作修改,并使用.
  地址:
  http://www.leftworld.org/sun/sun.html
  注意:
  如果想要将此服务器进行应用请下载他的更新包sp1 sp2

如果图片或页面不能正常显示请点击这里
Linux应用技巧推荐文章

文章评论

BBS社区热贴