* sometimes it's just... * i wake up, and i think: What do i have to do,to become great? * what must i do different? * than what i'm doing,and what i' ...
分类:
其他好文 时间:
2019-11-07 12:57:03
阅读次数:
92
Linux Shell脚本编程while语句案例 1,每隔3秒,打印一次系统负载 #!/bin/bash while truedo uptime sleep 3done 2,把监控结果保存到文件,在后台执行,然后用tail -f监控文件变化ghostwu@dev:~/linux/shell/flow ...
分类:
系统相关 时间:
2019-11-05 15:26:39
阅读次数:
123
[root@MiWiFi-R1CM-srv ~]# ifconfig |sed -n '2p' inet addr:192.168.139.128 Bcast:192.168.139.255 Mask:255.255.255.0 [root@MiWiFi-R1CM-srv ~]# ifconfig ... ...
分类:
其他好文 时间:
2019-11-04 09:14:04
阅读次数:
118
案例在前后端分离的,后端微服务的情况下,会话已经不再适合保存在服务端,使用redis可以保存会话,但是需要在redis集群之间进行复制,如果用户较多,保存的数据量也比较大。JWT实现无状态的会话机制,是一个解决方案。
分类:
编程语言 时间:
2019-10-24 15:43:24
阅读次数:
132
zabbix_proxy 开机启动脚本,zabbix_proxy init.d 文件
分类:
其他好文 时间:
2019-10-22 10:56:18
阅读次数:
146
一.教材学习内容总结 (一)《计算机科学概论》第二章——二进制数值与计数系统 从数字的分类(有理数、自然数。。。)引入,介绍了人类的一种计数方法——位置计数法,插入解释了0的重大意义,与占位思想。以及算盘、二五进制表示法。根据基数的不同,又介绍了二进制、八进制、十六进制,以及进制间转换的方法。了解到 ...
分类:
其他好文 时间:
2019-10-20 20:14:17
阅读次数:
103
The football season has just ended in Berland. According to the rules of Berland football, each match is played between two teams. The result of each ...
分类:
其他好文 时间:
2019-10-19 09:48:04
阅读次数:
68
ChoosethreeWhichthreestatementsaretrueaboutviewsinanOradebatabase?A)ASELECTstatementcannotcontainawhereclausewhenqueryingaviewcontaningaWHEREclauseinitsdefiningqueryB)Rowsinsertedintoatableusingaviewa
分类:
其他好文 时间:
2019-10-18 10:53:57
阅读次数:
134
题目: Summation Write a program that finds the summation of every number from 1 to num. The number will always be a positive integer greater than 0. For ...
分类:
其他好文 时间:
2019-10-10 22:14:24
阅读次数:
80
①虚拟机日志参数 -XX:+PrintGC(在jdk9.jdk10中建议使用-Xlog:gc),使用这个参数启动java虚拟机,则在GC时就会打印相应日志 -XX:+PrintGCDetails, 该参数可以打印堆的详细信息,描述各个区间的使用情况(jdk9,jdk10中使用-Xlog:gc*) - ...
分类:
其他好文 时间:
2019-10-08 21:53:23
阅读次数:
99