上一页 1 ··· 217 218 219 220 221 222 223 224 225 ··· 229 下一页
摘要: Mount NAS Storage in LinuxOverviewMounting your NAS Storage to a device that runs on a Linux-based Operating System can be done using a series of simple commands in the shell or terminal within the OS. This procedure outlines the steps required to mount NAS Storage on any of the following operating 阅读全文
posted @ 2013-09-22 15:41 一天不进步,就是退步 阅读(1497) 评论(0) 推荐(1) 编辑
摘要: 昨天在vm里面克隆了个虚拟机,克隆之后,启动了网卡起不来,已启动就报Device eth0 does not seem to be present, delaying initialization.[FAILED]经过各种google,最终要是找到了答案使用克隆后的虚拟机时发现原来在基本系统中的网卡eth0到了新系统却没有了,使用ifconfig -a会发现只有lo。http://www.linuxyan.com/linux-service/181.html因为基本系统的网络相关配置都是基于eth0的,如果基于此克隆虚拟机继续克隆或复制新的虚拟机,网卡的标识每一次都会自动加1变成eth1(第二 阅读全文
posted @ 2013-09-21 21:43 一天不进步,就是退步 阅读(294) 评论(0) 推荐(0) 编辑
摘要: Contents[hide]1 Introduction2 Our Sample Setup3 Install Keepalived4 Install Kernel Headers5 Compile keepalived6 Create Required Softlinks7 Configuration8 Verify: Keepalived Working Or Not8.1 Sample outputs8.2 Hugo said ...8.3 YazzY said ...IntroductionKeepalived provides a strong and robust health c 阅读全文
posted @ 2013-09-21 18:53 一天不进步,就是退步 阅读(907) 评论(0) 推荐(0) 编辑
摘要: 路由跟踪在线TracertTracert(跟踪路由)是路由跟踪实用程序,用于确定 IP 数据报访问目标所采取的路径。Tracert 命令用 IP 生存时间 (TTL) 字段和 ICMP 错误消息来确定从一个主机到网络上其他主机的路由。Tracert 工作原理 通过向目标发送不同 IP 生存时间 (TTL) 值的“Internet 控制消息协议 (ICMP)”回应数据包,Tracert 诊断程序确定到目标所采取的路由。要求路径上的每个路由器在转发数据包之前至少将数据包上的 TTL 递减 1。数据包上的 TTL 减为 0 时,路由器应该将“ICMP 已超时”的消息发回源系统。 Tra... 阅读全文
posted @ 2013-09-11 18:25 一天不进步,就是退步 阅读(219) 评论(0) 推荐(0) 编辑
摘要: #ThefollowingexamplespecifiesalistofWebLogicServersusingthesameport:ht.put(Context.PROVIDER_URL,"t3://acme1,acme2,acme3:7001");AlltheWebLogicServerslistenontheportspecifiedattheendoftheURL.#ThefollowingexamplespecifiesalistofWebLogicServersusingthedifferentports:ht.put(Context.PROVIDER_URL 阅读全文
posted @ 2013-09-11 13:50 一天不进步,就是退步 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 《高性能网站构建实战》第一篇 架构规划篇第1章 网站架构简介 21.1 网站的硬架构 21.1.1 机房的选择 21.1.2 带宽的大小 21.1.3 服务器的划分 31.2 网站的软架构 31.2.1 框架的选择 31.2.2 逻辑的分层 41.3 网站架构需要考虑的几个问题 51.3.1 html静态化 51.3.2 图片服务器分离 51.3.3 数据库集群和库表散列 61.3.4 缓存 61.3.5 镜像 71.3.6 负载均衡 71.4 操作系统的选择及参数优化 71.4.1 用u盘自动安装操作系统 71.4.2 系统初始化 13.1.5 小结 17第二篇 负载应用篇第2章 lvs+k 阅读全文
posted @ 2013-09-11 08:50 一天不进步,就是退步 阅读(802) 评论(0) 推荐(0) 编辑
摘要: 1. 执行安装目录下config.sh./config.sh2.选择 2|Extend an existing WebLogic configuration3. 别的一路跳过,到修改security,选择yes,即可修改weblogic console登录的用户名和密码。 阅读全文
posted @ 2013-09-03 11:41 一天不进步,就是退步 阅读(2622) 评论(0) 推荐(0) 编辑
摘要: http://hi.baidu.com/kaisep/item/0e4bf6ee5da001d1ea34c986 源地址启动weblogic的错误:Could not obtain an exclusive lock to the embedded LDAP data files directory启动weblogic时报以下错误: 解决办法: 为避免此错误,应确保没有没有启动其它进程或访问此文件并将它删除。 在关机时通常会对此文件进行解锁,但如果上次发生了异常关机(如崩溃... 阅读全文
posted @ 2013-09-03 10:36 一天不进步,就是退步 阅读(1784) 评论(0) 推荐(0) 编辑
摘要: #!/bin/sh myPath="/var/log/httpd/" myFile="/var /log/httpd/access.log" #这里的-x 参数判断$myPath是否存在并且是否具有可执行权限 if [ ! -x "$myPath"]; then mkdir "$myPath" fi 阅读全文
posted @ 2013-09-03 09:17 一天不进步,就是退步 阅读(448) 评论(0) 推荐(0) 编辑
摘要: 源地址:http://www.cnblogs.com/mchina/archive/2012/08/27/2644391.html一、简介VS/NAT原理图:二、系统环境实验拓扑:系统平台:CentOS 6.3Kernel:2.6.32-279.el6.i686LVS版本:ipvsadm-1.26keepalived版本:keepalived-1.2.4三、安装0、安装LVS前系统需要安装popt-static,kernel-devel,make,gcc,openssl-devel,lftp,libnl*,popt*1、在两台Director Server上分别配置LVS+Keepalived 阅读全文
posted @ 2013-08-31 08:10 一天不进步,就是退步 阅读(254) 评论(0) 推荐(0) 编辑
上一页 1 ··· 217 218 219 220 221 222 223 224 225 ··· 229 下一页