首页 > 其他
DNS
1、搭建DNS服务器。(截图)1).搭建DNS服务器2).修改本地Ip1、建立正向查找区域。(截图)1.)创建HT.com,创建web和ftp以及别名3.)在亚洲分公司创建A记录,并搭建邮件服务器(MX)4.)在欧洲分公司创建A记录1、客户机测试。(截图)1.)为客户机做设置1.1)为客户机改名1.2..
分类:其他   时间:2015-06-30 06:39:10    收藏:0  评论:0  赞:0  阅读:237
一机多站
(1)将主机名更改为WEBServer(2)该计算机的内网IP地址为192.168.1.1/241.在本机上搭建DNS服务器,并为本机网站解析名称:www.HT.com,oa.HT.com,web.HT.com,support.HT.com,mail.HT.com,www2.HT.com二、WWW服务器设置(截图)1、公司OA站点的配置利用默认端口配置一个公..
分类:其他   时间:2015-06-30 06:39:00    收藏:0  评论:0  赞:0  阅读:171
ftp
1、可匿名访问ftp站点;1、在C盘建立名称为“ftp”的文件夹,作为ftp站点的主目录。在C盘创建ftp文件夹3、建立隔离用户的ftp。1)建立Bob和John两个用户访问Ftp,创建Bob和Jhon这两个用户2)ftp采用隔离用户模式;3)Bob和John两个用户登陆后只可以访问自己的文件夹,并可以自..
分类:其他   时间:2015-06-30 06:38:53    收藏:0  评论:0  赞:0  阅读:263
neutron - 常用命令
neutronport-update--device-ownerclear7f9685cb-794d-4847(port-id)#清空端口的属主
分类:其他   时间:2015-06-30 06:38:40    收藏:0  评论:0  赞:0  阅读:227
程序集加载与反射(二):实例篇
目录:上篇:程序集加载与反射(一):基础篇Demo:下载一、Demo下面这个Demo,使用了策略模式模仿了一下插件机制。我们举个一邮件发送的例子:1、一个策略类库:Strategy,里面定义了邮件需要实现的接口:IEmailStrategy.using System;using System.Col...
分类:其他   时间:2015-06-30 06:34:29    收藏:0  评论:0  赞:0  阅读:214
LeetCode "Roman to Integer"
class Solution {public: int romanToInt(string s) { std::unordered_map hm; hm['M'] = 1000; hm['D'] = 500; hm['C'] = ...
分类:其他   时间:2015-06-30 06:34:19    收藏:0  评论:0  赞:0  阅读:172
LeetCode "Integer to Roman"
char dict[] = {'I', 'V', 'X', 'L', 'C', 'D', 'M'};class Solution { public: string pattern(int v, int level) { int offset = int(log10(l...
分类:其他   时间:2015-06-30 06:34:09    收藏:0  评论:0  赞:0  阅读:263
Minimum Depth of Binary Tree
http://oj.leetcode.com/problems/minimum-depth-of-binary-tree/This question is pretty similar to the solution of Maximum Depth of Binary Tree, the only...
分类:其他   时间:2015-06-30 06:33:49    收藏:0  评论:0  赞:0  阅读:235
HackerRank - "The Coin Change Problem"
If coin order matters, that is, each sequence is unique, the DP function is simple enough to make it 1D DP. But key is that order DOESN'T matter, so w...
分类:其他   时间:2015-06-30 06:33:39    收藏:0  评论:0  赞:0  阅读:467
UML期末复习题——2.5:System Sequence Diagram & Post-condition
UML期末复习——系统顺序图和操作协议
分类:其他   时间:2015-06-30 06:32:59    收藏:0  评论:0  赞:0  阅读:190
使用 CGContextRef 进行简单内容绘制
摘要 : CGContextRef 功能强大,我们借助它可以画各种图形。这里所举例子只是简单内容绘制,冰山一角,对此感兴趣的朋友可以举一反三,实现各种酷炫效果。效果如下:KMDrawView.h1 #import 2 3 @interface KMDrawView : UIView4 5 @endK...
分类:其他   时间:2015-06-30 06:31:39    收藏:0  评论:0  赞:0  阅读:137
percona 5.6 flush_master_info如何保证数据一致性 ?
首先,我们还是先来看看这部分处理逻辑.??先来看看flush_master_info的代码:点击(此处)折叠或打开623 int flush_master_info(Master_info* mi, bool force)?624 {?62...
分类:其他   时间:2015-06-30 02:15:34    收藏:0  评论:0  赞:0  阅读:344
ZK简介
ZooKeeper: 分布式应用的分布式协调服务?? ZooKeeper是一个分布式的,开源的分布式协调服务。它公开了一系列原 ...
分类:其他   时间:2015-06-30 02:09:44    收藏:0  评论:0  赞:0  阅读:151
七牛ufop广告过滤服务上线,7-10月免费用
从基于网络互联的Web1.0时代到基于社交的Web2.0时代,再到基于移动的Web3.0时代,个人不再是互联网信息被动的接收者,而是作为互联网的编织者、使 ...
分类:其他   时间:2015-06-30 02:09:19    收藏:0  评论:0  赞:0  阅读:162
CAS 与Tomcat 集成
第一节:生成证书 第一步:生成keystore注意【cn=www.xxx.com】这个一般为域名或者地址不同会出现no match dname ?? keytool -genkey -keyalg RSA -alias tomcatmycas -dname "cn=localhost" -storepass 123456 -keystore f:\api\keyserve ...
分类:其他   时间:2015-06-30 02:08:54    收藏:0  评论:0  赞:0  阅读:314
基于HAproxy的 session同步实践
首先安装,启动,配置HAproxy的方法网上已经有很多的介绍,此处不再作过多阐述 推荐2个比较有用的安装配置资料: 安装说明 http://blog.chinaunix.net/uid-17291169-id-4744949.html 配置文件说明 http://www.linuxidc.com/Linux/2012-07/65350.htm ? 另附简单操作代码 重启 关闭 与 ...
分类:其他   时间:2015-06-30 02:08:29    收藏:0  评论:0  赞:0  阅读:466
Edit Distance
Given two words?word1?and?word2, find the minimum number of steps required to convert?word1?to?word2. (each operation is counted as 1 step.) You have the following 3 operations permitted on a word: ...
分类:其他   时间:2015-06-30 02:07:39    收藏:0  评论:0  赞:0  阅读:160
Sort Colors
Given an array with?n?objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the integers 0, ...
分类:其他   时间:2015-06-30 02:06:24    收藏:0  评论:0  赞:0  阅读:154
数据结构随记_1
第一章 ? 1.数据结构包括数据的逻辑结构、数据的物理/存储结构和数据的逻辑关系这三个方面的内容。 2.数据的存储结构可用四种基本的存储方法表 ...
分类:其他   时间:2015-06-30 02:05:59    收藏:0  评论:0  赞:0  阅读:301
大数据告诉你:程序员如何涨薪水
美国队长:这怎么知道? 国防军官:这怎么不知道,21世纪就是本数码书。佐拉教会九头蛇怎么去读它,你的银行记录、病例、投票模式、电子邮件、? ...
分类:其他   时间:2015-06-30 02:05:34    收藏:0  评论:0  赞:0  阅读:169
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!