会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Isuty
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
下一页
2017年1月17日
Window ssh免密登录到远程Linux服务器
摘要: SSH采用的是”非对称密钥系统”,即耳熟能详的公钥私钥加密系统。 1. 基于口令的安全验证 这种方式使用用户名密码进行联机登录,一般情况下我们使用的都是这种方式。整个过程大致如下: (1)客户端发起连接请求。 (2)远程主机收到用户的登录请求,把自己的公钥发给客户端。 (3)客户端接收远程主机的公钥
阅读全文
posted @ 2017-01-17 16:30 Isuty
阅读(715)
评论(0)
推荐(1)
编辑
2017年1月15日
bootstrap tab标签页
摘要: <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
阅读(181)
评论(0)
推荐(0)
编辑
2017年1月2日
实现iframe 全屏显示
摘要: componentDidMount(){var elem = document.getElementById('iframe');; var elem = document.getElementById("iframe"); requestFullScreen(elem); function req
阅读全文
posted @ 2017-01-02 20:23 Isuty
阅读(12901)
评论(0)
推荐(0)
编辑
解决低版本chrome浏览器不支持es6 Array.find()
摘要: 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
阅读(6031)
评论(0)
推荐(1)
编辑
2016年12月14日
Markdown 文档格式编写语法
摘要: # Markdown 文档格式编写语法 ## ☑ 标题 在MarkdownMate中,标题使用`#+空格+文本`的形式表示。<font style="background-color: #137C56;color:yellow">语法如下:</font>```# 1 一级标题## 1.1 二级标题#
阅读全文
posted @ 2016-12-14 14:55 Isuty
阅读(289)
评论(0)
推荐(0)
编辑
2016年11月30日
MongoDB服务重启及后台运行解决方法
摘要: 1 在MongoDB 安装目录下 新建一个test文件夹 mkdir /test 2 切换到MongoDB的安装目录(可通过 find -name 'mongod'命令查找安装目录)下 执行: bin/mongod --dbpath ./test/ 重启MongoDB服务 3 在MongoDB安装目
阅读全文
posted @ 2016-11-30 09:55 Isuty
阅读(22056)
评论(1)
推荐(0)
编辑
2016年11月28日
git不是内部命令和可执行程序解决方法
摘要: 1、从Git官网下载windows版本的git:http://git-scm.com/downloads 2、一般使用默认设置即可:一路next,git安装完毕! 3、但是如果这时你打开windows的cmd,在里面打git命令会提示“不是内部或外部命令,也不是可运行的程序”,想要直接在window
阅读全文
posted @ 2016-11-28 14:27 Isuty
阅读(415)
评论(0)
推荐(0)
编辑
Nginx启动报错: could not open error log file: open() &q
摘要: 启动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
阅读(19850)
评论(1)
推荐(0)
编辑
2016年11月15日
Ngnix反向代理react-router配置问题解决方法
摘要: 项目以react router实现,用ngnix做反向代理的时候出现404找不到页面,有两种解决方法。 第一种 将<Route path="*" component={NotFound} />对应的component改为<IndexRoute>对应的component,如下: const Route
阅读全文
posted @ 2016-11-15 17:11 Isuty
阅读(586)
评论(0)
推荐(0)
编辑
2016年11月4日
Git分支的前世今生
摘要: 摘自Jack__CJ CSDN博客,写得很好,保存一下。 导读 几乎所有的版本控制系统都以某种形式支持分支。 使用分支意味着你可以把你的工作从开发主线上分离开来,以免影响开发主线。 在很多版本控制系统中,这是一个略微低效的过程——常常需要完全创建一个源代码目录的副本。对于大项目来说,这样的过程会耗费
阅读全文
posted @ 2016-11-04 15:24 Isuty
阅读(699)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
下一页