动态网站制作指南 [  QQ表情  ]
[ 投票调查 ]
[ 企业邮箱 ]
[ 网站空间 ]
网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
ASP源码 | .Net源码 | PHP源码 | JSP源码 | JAVA源码 | CGI源码 | VB源码 | C++源码 | Delphi源码 | PB源码 | VF源码 | 汇编 | 服务器
电脑书籍下载:程序设计书籍 | 数据库教程书籍 | 平面与多媒体书籍 | 网络通讯书籍 | 系统管理书籍 | 网络安全书籍 | 认证考试书籍
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > 数据库 > Oracle教程
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
数据库:数据库教程,数据库技巧,Oracle教程,MySQL教程,Sybase教程,Access教程,DB2教程,数据库安全,数据库文摘
文章搜索服务
邮件订阅
输入你的邮件地址,
你将不会错过任何关于:
[ Oracle教程 ]的信息



本月文章推荐
.Oracle开发(一).Windows下配置使.
.说一说如何配置Oracle的MTS part2.
.Oracle Fast-Start Fault Recove.
.展示JDBC存取ORACLE大型数据对象.
.在报表视图中实现分类显示.
.使用 DBMS_SQL包执行DDL语句.
.为什么有时数据库不用索引来查找.
.为什么Postfix提示“NIS domain .
.六大方面 教您学好Oracle 数据库.
.在Linux下安装VNC 远程安装Oracle.
.教你使用Linux的Shell脚本维护Or.
.不要忽视Oracle 10g STATSPACK.
.9i中一个特殊等待事件--null eve.
.字符集转换的exp/imp试验一.
.Lilo错误详解.
.rebuild和rebuild online的区别.
.ORACLE在HP-UX下的系列问题处理(.
.内部错误,hostdef扩展名不存在.
.删除a表中和b表相同的数据.
.Oracle压力测试之orabm.

vsftpd-1.1.3配制实例之四:VIRTUAL_HOSTS

发表日期:2008-2-9 |



  This example shows how you might set up virtual hosts. Virtual hosting is
  where different clients Access your machine on different IP addresses (virtual
  IPs) and get redirected to different FTP sites.
  For example, if your machine responds to two IPs - 127.0.0.1 and 127.0.0.2,
  you could have the two different IPs represent two totally different FTP sites.
  For this example, we are going to build on the "INTERNET_SITE" example.
  Step 1) Set up a virtual IP address.
  ifconfig eth0:1 192.168.1.10 up
  (the standard IP address is 192.168.1.2)
  (note - this isn't quite complete, the route for local connects hasn't been
  added, but it will do for now)
  Step 2) Create a user / location for the new virtual site.
  useradd -d /var/ftp_site2 ftp_site2
  chown root.root /var/ftp_site2
  chmod a+rx /var/ftp_site2
  umask 022
  mkdir /var/ftp_site2/pub
  echo "test" > /var/ftp_site2/pub/content
  Step 3) Modify the existing site to respond to the primary IP.
  Edit /etc/xinetd.d/vsftpd, and add the config line:
  bind = 192.168.1.2
  Step 4) Create the new site, responding on the virtual IP.
  cp /etc/xinetd.d/vsftpd /etc/xinetd.d/vsftpd2
  Edit vsftpd2, and change
  - The bind line to refer to the IP address 192.168.1.10
  - Add the line
  server_args = /etc/vsftpd_site2.conf
  This launches this FTP site with a different vsftpd configuration file.
  cp /etc/vsftpd.conf /etc/vsftpd_site2.conf
  Add two lines:
  ftp_username=ftp_site2
  ftpd_banner=This is the alternative FTP site.
  Step 5) Restart xinetd and test!
  /etc/rc.d/init.d/xinetd restart
  [chris@localhost vsftpd]$ ftp 192.168.1.2
  Connected to 192.168.1.2 (192.168.1.2).
  220 ready, dude (vsFTPd 1.1.0: beat me, break me)
  Name (192.168.1.2:chris): [chris@localhost vsftpd]$
  [chris@localhost vsftpd]$ ftp 192.168.1.2
  Connected to 192.168.1.2 (192.168.1.2).
  220 ready, dude (vsFTPd 1.1.0: beat me, break me)
  Name (192.168.1.2:chris):
  530 This FTP server is anonymous only.
  Login failed.
  ftp> quit
  221 Goodbye.
  [chris@localhost vsftpd]$ ftp 192.168.1.10
  Connected to 192.168.1.10 (192.168.1.10).
  220 This is the alternative FTP site.
  Name (192.168.1.10:chris):
  530 This FTP server is anonymous only.
  Login failed.
  ftp>
上一篇:vsftpd-1.1.3配制实例之五:VIRTUAL_USERS 人气:307
下一篇:多系统共存的方法 人气:352
浏览全部Oracle教程的内容 Dreamweaver插件下载 常用网页广告代码全集
  最新网站源码 最新软件下载
2008-7-24 Sablog-X v2.0 预览版
2008-7-24 帝国备份王EmpireBak 2008 正式版
2008-7-24 网趣网上购物系统时尚版 v8.2
2008-7-24 纵横B2B电子商务系统XYECS!B2B v
2008-7-24 e路小说小偷 v1.2.0723
2008-7-24 凌风美女图片站程序 v2.2
2008-7-24 TOM15电影收索程序
2008-7-24 清风信息自动采集生成系统 v1.0
2008-7-24 QQ邮箱编辑器 v1.0 (小小菜刀ASP
2008-7-19 UltraEdit 简体中文增强版 14.10
2008-7-19 CentOS 5.2 i386 LiveCD
2008-7-19 Snapture多功能相机 v1.4
2008-7-19 iAcces中文输入法 v1.0Build016
2008-7-19 Cookbook烹饪秘籍 v2.5
2008-7-19 苹果专用DVD转换工具 v1.1.59汉化
2008-7-19 Modem修复软件ZiPhone修改版04.0
2008-7-19 AgileMessenger即时通讯工具美化
2008-7-19 Sketches画图软件 v0.7b6破解版


  发表评论
姓 名: 验证码:
内 容:
[ 汉字翻译拼音 ] [ 广告代码 ] [ 符号对照表 ] [ 进制转换 ] [ 经典小工具 ] [ 个税计算 ] [ 汉字简繁转换 ] [ 普通单位换算 ] [ 公制单位换算 ]
[ 生辰老黄历 ] [ 国内电话区号 ] [ 国家代码与域名缩写 ] [ 文字加密解密 ] [ 健康查询 ] [ 万年历 ] [ 手机号码查询 ] [ ip搜索 ] [ Google PR查询 ]
业务联系 | 广告刊登 | 频道合作 | 投稿荐稿 | 联系方式 | 加入收藏 | RSS订阅
Copyright © 2000-2008 www.knowsky.com All rights reserved | 网络实名:动态网站制作指南 | 沪ICP备05001343号
ホームページ制作 不動産検索システム 求人情報
防水工事·改修工事 フットサル大会 探偵