https://www.cnblogs.com/l5gw/p/11225376.html 检查系统中的 MySQL,并删除现有的 Mysql 软件包。$ rpm -qa | grep mysql由于 centos7 默认安装的 MySQL 数据库为 Mariadb,并不是我需要的 MySQL,所以我 ...
分类:
数据库 时间:
2021-01-05 11:07:42
阅读次数:
0
MongoDB语法与现有关系型数据库SQL语法比较 MongoDB语法 MySql语法 db.test.find({'name':'foobar'})<==> select * from test where name='foobar' db.test.find() <==> select *fro ...
分类:
数据库 时间:
2021-01-05 11:00:27
阅读次数:
0
Largest Rectangle in Histogram (H) 题目 Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the ...
分类:
其他好文 时间:
2021-01-05 10:40:12
阅读次数:
0
#!/bin/bash data=`date '+%Y-%m-%d-%H-%M'` a=(`kubectl get deployments --all-namespaces |awk '{print $1}'| grep -v NAME`) ## 获取域名空间(NAMESPACE) b=(`kube ...
分类:
其他好文 时间:
2021-01-04 11:32:43
阅读次数:
0
1.是否需要降维? Dimensionality reduction we normally use it to visualize our data and to find hidden information we don't normally see. Also, it is use for ...
分类:
其他好文 时间:
2021-01-04 11:30:05
阅读次数:
0
本文选取并翻译自:https://saywebsolutions.com/blog/git-github-error-fatal-couldnt-find-remote-ref-master 如果出现该错误提示,可能是因为使用了旧命令: git pull origin master master现在 ...
分类:
其他好文 时间:
2021-01-04 11:08:12
阅读次数:
0
分屏查看文件more/lessmore分屏查看,空格按屏查看less支持按行上下键查看,空格按屏查看 grep 查找 //若想使用正则表达式, 需要 -E选项grep -E "nice" metadata.txt //正则表达式匹配metadata中,包含nice的行egrep "nice" met ...
分类:
系统相关 时间:
2021-01-04 10:47:00
阅读次数:
0
3.1 工作模型(C/S) MySQL 客户端/服务器 类比ssh连接工作原理: 一,本地socket连接方式: (已经封装了IP+端口:用于本地服务的连接) 前提: 需要提前创建xxx@'localhost' 本地用户 [root@db01 ~]# cat /etc/my.cnf | grep s ...
分类:
数据库 时间:
2021-01-02 11:27:32
阅读次数:
0
查看有几个物理CPU cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l 查看cpu核数 cat /proc/cpuinfo | grep "core id" | sort | uniq | wc -l 查看CPU线程 cat / ...
分类:
其他好文 时间:
2021-01-02 11:13:23
阅读次数:
0
//下载redis包 wget http://pecl.php.net/get/redis-3.1.6.tgz //解压 tar -zxvf redis-3.1.6.tgz //进入文件 cd redis-3.1.6 //(收集php相关的信息) phpize位置不一 自己找一下 find / -n ...
分类:
Web程序 时间:
2021-01-01 12:35:06
阅读次数:
0