CentOS 7.3 安装 Redis 报错“You need tcl 8.5 or newer in order to run the Redis test” 问题说明 个人安装的是 redis-5.0.4,在解压目录下执行完 make 命令后,在 src/ 目录下执行 make test命令 的 ...
分类:
其他好文 时间:
2020-12-30 10:54:18
阅读次数:
0
grep是Linux中用于处理文件的工具之一。grep搜索输入文件,查找与正则表达式匹配的行,并将每个匹配的行标准输出。 正则表达式是匹配一组字符串的模式。模式由操作符、构造文字字符和具有特殊意义的元字符组成。grep支持三种正则表达式语法:Basic、Extended和perl兼容。 如果没有提供 ...
分类:
系统相关 时间:
2020-12-29 12:00:30
阅读次数:
0
JVM调优问题简单总结 jvm调优在我看来就是扩扩内存,修改一下虚拟机运行参数,再不行换个垃圾回收器,比如G1什么的。 但是,对运行时问题的定位却是个大问题,今天就来总结一下,这两天学习的关于jvm调优的一些查用的排查方式 CPU突然飙升怎么排查 因为在服务器上不只有Java进程还有其他进程,所以需 ...
分类:
其他好文 时间:
2020-12-29 11:44:09
阅读次数:
0
递归实现 template<typename T> int binary_search(T arr[], int len, int left, int right, int find) { // 必要参数检查 if (NULL == arr || nullptr == arr || 0 > left ...
分类:
编程语言 时间:
2020-12-29 11:31:49
阅读次数:
0
1、打开终端,输入命令 ps -ef|grep mysql 2、在命令窗口中可以看到安装路径: /usr/local/mysql/bin 3、切换到mysql安装路径 cd /usr/local/mysql/bin 4、输入命令及密码登录 ./mysql -u 用户名 -p 数据库 输入密码 这样就 ...
分类:
系统相关 时间:
2020-12-29 11:12:03
阅读次数:
0
package LeetCode_562 /** * 562. Longest Line of Consecutive One in Matrix * (Prime) *Given a 01 matrix M, find the longest line of consecutive one in ...
分类:
其他好文 时间:
2020-12-28 11:58:19
阅读次数:
0
Samba服务器安装和配置 1:安装Samba服务器软件包 [root@localhost ~]# rpm -qa | grep samba [root@localhost ~]# yum -y install samba [root@localhost ~]# yum -y install sam ...
分类:
系统相关 时间:
2020-12-28 11:07:28
阅读次数:
0
随着单块磁盘在数据安全、性能、容量上呈现出的局限,磁盘阵列(Redundant Arrays of Inexpensive/Independent Disks,RAID)出现了,RAID把多块独立的磁盘按不同的方式组合起来,形成一个磁盘组,以获得比单块磁盘更高的数据安全、性能、容量。 一. 常见的R ...
分类:
系统相关 时间:
2020-12-28 11:07:12
阅读次数:
0
linux 看cpu、内存、虚拟内存、磁盘查、 查看物理cpu个数 cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l 查看物理cpu内核个数 cat /proc/cpuinfo | grep "cpu cores" | uniq ...
分类:
系统相关 时间:
2020-12-28 10:56:23
阅读次数:
0
B - Lucky Mask Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lu ...
分类:
其他好文 时间:
2020-12-25 12:22:13
阅读次数:
0