-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1879 lines (606 loc) · 56.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="theme-next pisces use-motion" lang="zh-CN">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"/>
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=6.1.0" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=6.1.0">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=6.1.0">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=6.1.0">
<link rel="mask-icon" href="/images/logo.svg?v=6.1.0" color="#222">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Pisces',
version: '6.1.0',
sidebar: {"position":"left","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: false,
fastclick: false,
lazyload: false,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<meta name="description" content="努力的最大意义">
<meta property="og:type" content="website">
<meta property="og:title" content="西班木有蛀牙">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="西班木有蛀牙">
<meta property="og:description" content="努力的最大意义">
<meta property="og:locale" content="zh-CN">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="西班木有蛀牙">
<meta name="twitter:description" content="努力的最大意义">
<link rel="canonical" href="http://yoursite.com/"/>
<script type="text/javascript" id="page.configurations">
CONFIG.page = {
sidebar: "",
};
</script>
<title>西班木有蛀牙</title>
<noscript>
<style type="text/css">
.use-motion .motion-element,
.use-motion .brand,
.use-motion .menu-item,
.sidebar-inner,
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments,
.use-motion .post-header,
.use-motion .post-body,
.use-motion .collection-title { opacity: initial; }
.use-motion .logo,
.use-motion .site-title,
.use-motion .site-subtitle {
opacity: initial;
top: initial;
}
.use-motion {
.logo-line-before i { left: initial; }
.logo-line-after i { right: initial; }
}
</style>
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-CN">
<div class="container sidebar-position-left
page-home">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner">
<div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">西班木有蛀牙</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">努力的最大意义</p>
</div>
<div class="site-nav-toggle">
<button aria-label="切换导航栏">
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />首页</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />归档</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2018/05/24/随笔/浏览器调试——Timeline掌控帧渲染模式/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Lei Tongda">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/head_img.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="西班木有蛀牙">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/05/24/随笔/浏览器调试——Timeline掌控帧渲染模式/" itemprop="url">浏览器调试——Timeline掌控帧渲染模式</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-05-24T23:50:32+08:00">2018-05-24</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>网页动画能够做到每秒60帧,就会跟显示器同步刷新,一秒之内进行60次重新渲染,每次重新渲染的时间不能超过16,66毫秒</p>
<p>黄色:JavaScript执行<br>紫色:样式计算和布局,及重排<br>绿色:重绘</p>
<p><code>window.requestAnimationFrame() // 下一次</code></p>
<p><code>window.requestldleCallback() // 下几次重新渲染时间</code></p>
<h3 id="触发分层"><a href="#触发分层" class="headerlink" title="触发分层"></a>触发分层</h3><p>1.获取DOM并将其分割为多个层<br>2.将每个层独立的绘制进位图中<br>3.将层作为纹理上传至GUP<br>4.复合多个层来生成最终的屏幕图像</p>
<p>1.DOM子树渲染层(RenderLayer)RenderObject->GraphicsContext(根元素、position、transform、半透明、CSS滤镜、Canvas2D、video、溢出);<br>2.Compositor->渲染层子树的图形层</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2018/05/24/日记本/webpack-externals/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Lei Tongda">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/head_img.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="西班木有蛀牙">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/05/24/日记本/webpack-externals/" itemprop="url">webpack-externals</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-05-24T23:50:03+08:00">2018-05-24</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p><a href="https://webpack.js.org/configuration/externals/#externals" target="_blank" rel="noopener">查看文档</a></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2018/05/24/日记本/Linux预备知识——进程与线程/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Lei Tongda">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/head_img.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="西班木有蛀牙">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/05/24/日记本/Linux预备知识——进程与线程/" itemprop="url">Linux预备知识——进程与线程</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-05-24T23:49:54+08:00">2018-05-24</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>Linux 查看进程树</p>
<blockquote>
<p><code>pstrss // 查看进程树</code></p>
</blockquote>
<p>调度和切换的时间:进程>线程>协程</p>
<p>理论上一个核一个线程效率最高</p>
<h4 id="top-命令"><a href="#top-命令" class="headerlink" title="top 命令"></a>top 命令</h4><p><code>pid 进程编号</code><br><code>按q键退出</code></p>
<h4 id="ps-命令"><a href="#ps-命令" class="headerlink" title="ps 命令"></a>ps 命令</h4><p><code>ps aux</code><br><code>sudo ps aux // 非root用户</code><br><code>// pid 越小的越有可能是主线程</code><br><code>//(例外:pid最大是2的16次方,pid一直增加,当增加到最大值,会从0开始,没有占用的数字上)</code><br><code>ps aux | grep python // grep 进行分组 筛选出python</code></p>
<h4 id="kill-、pkill命令"><a href="#kill-、pkill命令" class="headerlink" title="kill 、pkill命令"></a>kill 、pkill命令</h4><p><code>kill 进程的pid</code></p>
<h4 id="w-命令"><a href="#w-命令" class="headerlink" title="w 命令"></a>w 命令</h4><p><code>如果服务器被多个人使用, 当你需要重启服务的时候 使用w查看有没有其它人在服务器上工作。</code></p>
<h4 id="重启网卡"><a href="#重启网卡" class="headerlink" title="重启网卡"></a>重启网卡</h4><blockquote>
<p><code>ip addr</code><br>或<br><code>ifconfig</code><br>拿到网卡名字</p>
</blockquote>
<blockquote>
<p><code>cd /etc/sysconfig/network-scripts/</code><br><code>ls // 查看目录下是否有 ifcfg-网卡名称</code><br><code>ifdown 网卡名称 // 关掉网卡[慎用]</code><br><code>ifup 网卡名称 // 启动网卡</code></p>
</blockquote>
<h4 id="排查网络故障"><a href="#排查网络故障" class="headerlink" title="排查网络故障"></a>排查网络故障</h4><blockquote>
<p>能访问网络,但是访问不到特定网络<br><code>ping 网址 // ping不通</code></p>
</blockquote>
<p>使用 <code>tranceroute 网址</code></p>
<blockquote>
<p>会出来一啪啦的ip地址,这些地址就是你访问这个网址 所经过的路由器</p>
</blockquote>
<h4 id="如何找到占用端口的进程"><a href="#如何找到占用端口的进程" class="headerlink" title="如何找到占用端口的进程"></a>如何找到占用端口的进程</h4><blockquote>
<p>使用 <code>netstat</code> 或者 <code>ss</code> 查看所有进程<br><code>netstat -an</code><br><code>netstat -anp // 显示进程 p代表process(英语一定要很OK)</code><br><code>netstat -anp | grep 8080 // 分组筛选</code><br>这个时候就可以使用<code>kill 加 进程id</code> 杀死这个进程了</p>
</blockquote>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2018/05/24/日记本/Linux预备知识——快捷键/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Lei Tongda">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/head_img.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="西班木有蛀牙">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/05/24/日记本/Linux预备知识——快捷键/" itemprop="url">Linux预备知识——快捷键</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-05-24T23:49:41+08:00">2018-05-24</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="登录"><a href="#登录" class="headerlink" title="登录"></a>登录</h1><p><code>ssh root@ip地址</code><br><code>// 然后输入密码</code></p>
<h1 id="网络管理命令"><a href="#网络管理命令" class="headerlink" title="网络管理命令"></a>网络管理命令</h1><p><code>systemctl status httpd</code><br><code>systemctl status apache2</code><br><code>systemctl start apache2 // 启动</code><br><code>systemctl stop apache2 // 停止</code><br><code>enable // 跟随系统启动一起启动</code><br><code>disable // 不跟随系统一起启动</code><br><code>ifconfig // 查看ip地址</code><br><code>ip addr // 查看ip地址</code><br><code>route // 路由信息,网关</code></p>
<h1 id="命令行的下载命令:"><a href="#命令行的下载命令:" class="headerlink" title="命令行的下载命令:"></a>命令行的下载命令:</h1><blockquote>
<p><code>wget 下载地址</code><br><code>curl 下载地址 -o 写入到指定名称的文件 --progress</code><br><code>// 现实进度条 --progress</code></p>
</blockquote>
<h1 id="查看服务器时间"><a href="#查看服务器时间" class="headerlink" title="查看服务器时间"></a>查看服务器时间</h1><p><code>date</code></p>
<h1 id="查看Linux-帮助"><a href="#查看Linux-帮助" class="headerlink" title="查看Linux 帮助"></a>查看Linux 帮助</h1><p><code>curl --help</code><br><code>man curl //按q退出</code></p>
<h1 id="在终端不小心按了-ctrl-s-怎么办??"><a href="#在终端不小心按了-ctrl-s-怎么办??" class="headerlink" title="在终端不小心按了 ctrl + s 怎么办??"></a>在终端不小心按了 ctrl + s 怎么办??</h1><blockquote>
<p><code>ctrl + s // 暂停屏幕输出</code><br>使用<br><code>ctrl + q // 恢复屏幕输出</code></p>
</blockquote>
<h1 id="其它快捷键"><a href="#其它快捷键" class="headerlink" title="其它快捷键"></a>其它快捷键</h1><p><code>ctrl + d // 结束输入或退出shell</code><br><code>ctrl + l //(小写的L,不是I)清屏,等同于clear</code><br><code>ctrl + a / ctrl + e // 快速移动光标到行首/行尾</code></p>
<p>进入vim后,退出时 提示没有文件名<br><code>:q! // 不保存,强行退出</code></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2018/05/24/日记本/Linux预备知识——免密远程登录/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Lei Tongda">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/head_img.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="西班木有蛀牙">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/05/24/日记本/Linux预备知识——免密远程登录/" itemprop="url">Linux预备知识——免密远程登录</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-05-24T23:49:30+08:00">2018-05-24</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<blockquote>
<p>使用情景一:在Linux或者mac上频繁登录另外一台主机</p>
</blockquote>
<blockquote>
<p>使用情景二:在需要自动化部署的时候</p>
</blockquote>
<h6 id="这时候每次都要输入口令-这时候就需要免密登录"><a href="#这时候每次都要输入口令-这时候就需要免密登录" class="headerlink" title="这时候每次都要输入口令 这时候就需要免密登录"></a>这时候每次都要输入口令 这时候就需要免密登录</h6><blockquote>
<p>用公钥加密(相当于锁) 私钥解密(相当于钥匙)</p>
</blockquote>
<h4 id="步骤1:-生成密钥对"><a href="#步骤1:-生成密钥对" class="headerlink" title="步骤1: 生成密钥对"></a>步骤1: 生成密钥对</h4><p><code>ssh-keygen -t rsa -C "名称" -f "名称_rsa" // rsa 加密方式</code></p>
<h4 id="步骤2:-上传配置公钥"><a href="#步骤2:-上传配置公钥" class="headerlink" title="步骤2: 上传配置公钥"></a>步骤2: 上传配置公钥</h4><p>上传公钥到服务器对应帐号的home路径下的<code>./ssh/</code>中<br><code>ssh-copy-id -i "公钥文件名" 用户名@服务器ip或域名</code><br><code>// 配置公钥文件访问权限为 600 -rw-------</code><br>登录服务器查看公钥是否上传<br><code>ssh 用户名@服务器ip或域名</code><br><code>cd /home/</code><br><code>ls -a // 查看所有文件(包括隐藏文件)</code><br><code>cd .ssh/</code><br><code>cat "公钥文件名" // 查看文件内容中是否是正确</code><br><code>检查正确上传之后 exit 退出</code></p>
<blockquote>
<p>使用scp上传<br>可以用 <code>cat abc_rsa.pub >> // 写入到文件里面</code></p>
</blockquote>
<h4 id="步骤3:-配置本地私钥"><a href="#步骤3:-配置本地私钥" class="headerlink" title="步骤3: 配置本地私钥"></a>步骤3: 配置本地私钥</h4><p>在同层目录可以显示传入<br><code>ssh -i 私钥文件名 用户名@服务器ip或域名 // 就可以面给密登录</code><br>不在同一级目录<br><code>ssh -i 相对路径/私钥文件名 用户名@服务器ip或域名</code><br><code>例:ssh -i .ssh/abc_res 用户名@服务器ip或域名 // 假设我的私钥文件名为abc_rsa</code></p>
<h4 id="步骤4:-免密登录功能的本地配置文件"><a href="#步骤4:-免密登录功能的本地配置文件" class="headerlink" title="步骤4: 免密登录功能的本地配置文件"></a>步骤4: 免密登录功能的本地配置文件</h4><p>编辑自己 <code>home</code> 目录的 <code>./ssh/</code> 路径下的<code>config</code> 文件<br><code>User root // 登录的用户名</code><br><code>Host zhangsan // 服务器的别名</code><br><code>HostName www.abc.com // 服务器的ip或网址</code><br><code>Port 54322 // 端口号(默认填22)</code><br><code>StrictHostKeyChecking no</code><br><code>IdentityFile ~/ssh/abc_rsa // 指定私钥文件的地址</code><br><code>IdentitiesOnly yes</code><br><code>Protocol 2 // ssh的版本</code><br><code>Compression yes</code><br><code>ServerAliveInterval 60 // 每个60s网服务器发一个心跳</code><br><code>ServerAliveCountMax 20</code><br><code>LogLevel INFO // 日志输出等级,只输出主要日志</code></p>
<blockquote>
<p>如果有多个服务器,上面的多复制几块</p>
</blockquote>
<p>配置config 文件的访问权限为644</p>
<blockquote>
<p>config 的访问权限也应该为 <code>600 -rw-------</code></p>
</blockquote>
<p><code>ssh 别名 // 登录</code></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2018/05/24/日记本/koa2/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Lei Tongda">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/head_img.jpg">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="西班木有蛀牙">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2018/05/24/日记本/koa2/" itemprop="url">koa2</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2018-05-24T23:49:20+08:00">2018-05-24</time>