摘要: SSH采用的是”非对称密钥系统”,即耳熟能详的公钥私钥加密系统。 1. 基于口令的安全验证 这种方式使用用户名密码进行联机登录,一般情况下我们使用的都是这种方式。整个过程大致如下: (1)客户端发起连接请求。 (2)远程主机收到用户的登录请求,把自己的公钥发给客户端。 (3)客户端接收远程主机的公钥 阅读全文
posted @ 2017-01-17 16:30 Isuty 阅读(713) 评论(0) 推荐(1) 编辑
摘要: <ul id="myTab" class="nav nav-tabs"> <li class="active"> <a href="#home" data-toggle="tab"> 菜鸟教程 </a> </li> <li><a href="#ios" data-toggle="tab">iOS</ 阅读全文
posted @ 2017-01-15 19:34 Isuty 阅读(178) 评论(0) 推荐(0) 编辑
摘要: componentDidMount(){var elem = document.getElementById('iframe');; var elem = document.getElementById("iframe"); requestFullScreen(elem); function req 阅读全文
posted @ 2017-01-02 20:23 Isuty 阅读(12890) 评论(0) 推荐(0) 编辑
摘要: if (!Array.prototype.find) { Array.prototype.find = function(predicate) { 'use strict'; if (this == null) { throw new TypeError('Array.prototype.find  阅读全文
posted @ 2017-01-02 20:21 Isuty 阅读(6015) 评论(0) 推荐(1) 编辑
摘要: # Markdown 文档格式编写语法 ## ☑ 标题 在MarkdownMate中,标题使用`#+空格+文本`的形式表示。<font style="background-color: #137C56;color:yellow">语法如下:</font>```# 1 一级标题## 1.1 二级标题# 阅读全文
posted @ 2016-12-14 14:55 Isuty 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 1 在MongoDB 安装目录下 新建一个test文件夹 mkdir /test 2 切换到MongoDB的安装目录(可通过 find -name 'mongod'命令查找安装目录)下 执行: bin/mongod --dbpath ./test/ 重启MongoDB服务 3 在MongoDB安装目 阅读全文
posted @ 2016-11-30 09:55 Isuty 阅读(22047) 评论(1) 推荐(0) 编辑
摘要: 1、从Git官网下载windows版本的git:http://git-scm.com/downloads 2、一般使用默认设置即可:一路next,git安装完毕! 3、但是如果这时你打开windows的cmd,在里面打git命令会提示“不是内部或外部命令,也不是可运行的程序”,想要直接在window 阅读全文
posted @ 2016-11-28 14:27 Isuty 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 启动nginx报如下错误: nginx: [alert] could not open error log file: open() "/usr/local/nginx/logs/error.log" failed (13:Permission denied) 2014/08/04 20:35:45 阅读全文
posted @ 2016-11-28 14:26 Isuty 阅读(19456) 评论(1) 推荐(0) 编辑
摘要: 项目以react router实现,用ngnix做反向代理的时候出现404找不到页面,有两种解决方法。 第一种 将<Route path="*" component={NotFound} />对应的component改为<IndexRoute>对应的component,如下: const Route 阅读全文
posted @ 2016-11-15 17:11 Isuty 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 摘自Jack__CJ CSDN博客,写得很好,保存一下。 导读 几乎所有的版本控制系统都以某种形式支持分支。 使用分支意味着你可以把你的工作从开发主线上分离开来,以免影响开发主线。 在很多版本控制系统中,这是一个略微低效的过程——常常需要完全创建一个源代码目录的副本。对于大项目来说,这样的过程会耗费 阅读全文
posted @ 2016-11-04 15:24 Isuty 阅读(693) 评论(0) 推荐(0) 编辑