当前位置:Linux教程 - Linux资讯 - 配置Sun ONE Web Server支持JSP,PHP,CGI

配置Sun ONE Web Server支持JSP,PHP,CGI

  目前在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? [Yes]: 回车   Do you agree to the license terms? [No]: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 [2]: 回车(建议安典型安装)     Install location [/opt/SUNWwbsvr]:回车(默认安装目录)   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 [All]:回车(安装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 [1, 2]: 回车(安装代码和开发包)     To accept the default shown in brackets, press the Enter key.     Computer name [lee.(none)]:回车(设置域名,默认主机名)     System User [nobody]:回车(设置启动这个服务的用户)   System Group [nobody]:回车(设置启动这个服务的用户组)   Run Web Server Administration Server as [root]:回车(运行管理服务的用户)   Web Server Admin Server User Name [admin]:回车(web管理员用户名)   Web Server Admin Server PassWord:(密码)   Web Server Admin Server Password (again):(确认密码)   Web Server Admin Server Port [8888]:回车(web管理的端口)   Web Server Port [80]:回车(运行web服务的端口一般是80,因为我的服务器装了apache,所以改成了88)   Web Server Content Root [/opt/SUNWwbsvr/docs]:回车(网页根目录)   Web Server Start On Boot [yes]:回车(引导时启动)   然后会拷贝安装文件,一切顺利,就会安装完毕。     因为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\" [inikey=\"value\" inikey=\"value\" 4=\"...]\"     保存文件     然后打开 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!\" [php_ini=\"/etc/php.ini\"]   保存文件     打开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
[1] [2] 下一页 

(出处:http://www.sheup.com)


上一页 [1] [2]