摘要:
[b:4d61eea260] vmware 网络设置实例四:windows 2003 host + linux guest [/b:4d61eea260]
前言:关于vmware的网络设置已经写了三篇文章(参见我的个人专集),基本上把常用的设置给包括了。但前几天有朋友提出了windows 2003 host下的问题,我抽空试验了一下,算是作为前几篇文章的补充,其实你自己配置一下也不算复杂。......
摘要:
1.
cd /tmp
wget -c -q http://puzzle.dl.sourceforge.net/sourceforge/cbqinit/cbq.init-v0.7.3&
2.
mv /tmp/cbq.init-v0.7.3 /sbin/cbq
chmod u+x /sbin/cbq
3.
mkdir -p /etc/sysconfig/cbq
4.
c......
apache+resin+pureftp的虚拟主机和负载均衡[原创]
1.前言
【程序编程相关:
[原创]关于RealOne只有root用】 【推荐阅读:
数百种 Windows 软件的LINUX】 apache+resin来做想来大家都比较熟悉了,一般的配置都是很熟悉的了,我查看了一些论坛上的文章,这方便的文章比较多.在这里,我只要写写apache+resin实现独立的虚拟主机与resin自带的负载均衡.
【扩展信息:
使用X-WIN32 EXCEED等软件显】
2.系统与环境:
redhat9 and solaris9
httpd-2.50
resin-3.06
pure-ftpd-1.0.17a.tar.gz
3.安装软件:
3.1.安装apache:
# tar zxvf httpd-2.49.tar.gz
# cd httpd-2.49
# ./configure --prefix=/usr/local/apache2 --enable-so --with-mpm=worker
# make
# make install
3.2.安装resin:
# tar zxvf resin-3.06.tar.gz
# cd resin03.06
# ./configure --prefix=/usr/local/resin --with-apxs=/usr/local/apache2/bin/apxs
# make
# make install
3.3.安装pureftp
# tar zxvf pure-ftpd-1.0.17a.tar.gz
# cd pure-ftpd-1.0.17a
# ./configure --prefix=/usr/local/pureftpd
--without-inetd --with-puredb
--with-cookie --with-throttling
--with-ratios --with-quotas
--with-ftpwho --with-largefile
--with-welcomemsg
# make
# make install
# mkdir /usr/local/pureftpd/etc
4.配置软件:
目的:用apache与resin做基于域名的虚拟主机,启用resin自身的负载均衡的引擎.resin的负载均衡引擎实际上是可以启动多个java响应进程,通过内部机制来进行负载均衡.
4.1.配置apache:
# vi /usr/local/apache2/conf/httpd.conf
---------------------------------------
dirctoryindex index.html index.jsp
adddefaultcharset off
user nobody
group nobody
namevirtualhost 211.11.11.11
<virtualhost 211.11.11.11:80>
serveradmin peng.zhang@bj.china.com
documentroot /data/web/xcity
...
下一页 摘要:
[size=24:0278c4a2e8][color=green:0278c4a2e8]linux音频制作播放不完全指南(mp3,mpc,ape)[/color:0278c4a2e8][/size:0278c4a2e8]
[size=18:0278c4a2e8][color=red:0278c4a2e8]作者:天外闲云[/color:0278c4a2e8] [color=green:027......