Zeus是一个运行于Unix下的非常优秀的Web Server,据说性能超过Apache,是最强的Web Server之一
由于Zeus的中文介绍非常少,很多管理员不知道这个超级Web Server,有些知道的苦于中文安装说明很少,
下面的安装环境 FreeBSD4.9,更新了源代码树,重新编译了内核和系统,ports最新!进入系统su变成root
1、安装MySQL
cd /usr/ports/databases/mysql323-server
make install
make clean
/usr/local/bin/safe_mysqld & 启动mysql
/usr/local/bin/mysqladmin -uroot password 密码 修改mysql root口令,
默认为空
/usr/local/bin/mysql -uroot -p密码
如果出现 mysql> 恭喜你安装成功了
2、安装fastcgi
cd /usr/ports/www/fcgi/
make install
make clean
完成后在/usr/local/lib目录中看到有libfcgi.a文件,
在/usr/local/include目录中会有fastcgi的所有头文件
3、安装php
cd /usr/ports/www/php4-cgi
make WITH_FASTCGI=yes install
当中会就叫你选择你需要的php模块,选择你需要的php模块把
make clean
cp /usr/local/etc/php.ini-dist /usr/local/etc/php.ini
测试
/usr/local/bin/php
输入
按ctrl-d运行后会见到php返回的信息说明安装成功
4、安装 zeus
下载地址 http://www.axin.net/Zeus_42r4_FreeBSD4.tar他的注册文件
http://www.axin.net/license.key
cd /home/axinmkdir servercd serverfetch http://www.axin.net/Zeus_42r4_FreeBSD4.tar
下载zeusfetch http://www.axin.net/license.key
下载licenstar vxf Zeus_42r4_FreeBSD4.tar
解开cd Zeus_42r4_FreeBSD4./zinstall按CTRL+C
打入acceptWhere should the product be installed?
[/usr/local/zeus]: 问你要安装到哪里
默认usr/local/zeus
Installation options:1. Full install of both admin server
& web server2. Stand-alone install of admin server3. Clustered install of web serverH. Help
Choose installation option [1]: 选择安装模式 1吧 全部安装
Enter the key filename, or leave blank for unlicensed mode:
/home/axin/server/license.key (输入密匙位置)
Please choose a password for the admin server:
****** (输入管理员密码)Re-enter:
****** (重新输入密码)
Would you like Zeus to start at boot time? Y/N [Y]: (回车)
安装很简单
测试一下 http://ip:9090 安装成功的话就会跳出一个认证窗口,输入 admin 密码 就可以看到zeus的后台了。爽吧,别激动,先把其他的弄好
5、安装 zend
cd /home/axin/server下载zendtar
zvxf ZendOptimizer-2[1].5.1-FreeBSD4.0-i386.tar.gz
cd ZendOptimizer-2.5.1-FreeBSD4.0-i386./install.sh
问Are you using Apache web server?的时候选No
6、安装
mmcachecd /usr/ports/www/truck-mmachemake
installmake cleanvi /usr/local/etc/php.ini
加上
[mmcache]zend_extension="/usr/local/lib/php/20020429/mmcache.so"mmcache.
shm_size="16"mmcache.cache_dir="/var/tmp/mmcache"mmcache.enable="1"mmcache.
optimizer="1"mmcache.check_mtime="1"mmcache.debug="0"mmcache.
filter=""mmcache.shm_max="0"mmcache.shm_ttl="0"mmcache.
shm_prune_period="0"mmcache.shm_only="0"mmcache.compress="1"mmcache.
keys="shm_and_disk"mmcache.sessions="shm_and_disk"mmcache.content="shm_and_disk"