采用yum安装mysql后,卸载mysql: 1 查看mysql安装 rpm -qa |grep -i mysql 2 卸载 使用yum remove 命令,删除以上各项 3 再次查看是否卸载完成 rpm -qa |grep -i mysql 4 查找mysql相关目录 find / -name m ...
分类:
数据库 时间:
2020-05-31 21:35:11
阅读次数:
92
1. 实现文件系统要记住两个重要链表 a.文件系统链表。b.每一个文件系统的mount挂载点链表。 2. 注意vfs提供的三类接口 a.和POSIX系统调用有关的接口 即实现open/read/write的操作的接口。b.和底层介质有关的接口 即下接块设备层的接口。c.如何管理自身的接口,即何时以及 ...
分类:
其他好文 时间:
2020-05-31 19:54:08
阅读次数:
78
今天在构建mpvue项目的时候,出现了以下错误: vue-cli · Failed to download repo mpvue/mpvue-quickstart: connect ETIMEDOUT 13.250.162.133:443 之前我遇到的npm下载webpack插件时出现network ...
分类:
Web程序 时间:
2020-05-31 17:38:04
阅读次数:
146
最近在学习 spring+mybatis,启动时报了这个错: Cause: org.xml.sax.SAXParseException; lineNumber: 2; columnNumber: 6; 不允许有匹配 "[xX][mM][lL]" 的处理指令目标。 解决: 找到配置文件,xxx-con ...
分类:
编程语言 时间:
2020-05-31 16:18:12
阅读次数:
188
1.这个错误发生在mysql 5.7 版本及以上版本会出现的问题: mysql 5.7版本默认的sql配置是:sql_mode="ONLY_FULL_GROUP_BY",这个配置严格执行了"SQL92标准" 2.在sql执行时,出现该原因: 简单来说就是:输出的结果是叫target list,就是s ...
分类:
数据库 时间:
2020-05-31 13:12:47
阅读次数:
79
Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidates where the ...
分类:
其他好文 时间:
2020-05-31 12:44:37
阅读次数:
59
Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numb ...
分类:
其他好文 时间:
2020-05-31 12:43:12
阅读次数:
52
1问题描述在SpringBoot中使用jasypt-spring-boot进行加密,但是提示:Description:Failedtobindpropertiesunder‘spring.datasource.password‘tojava.lang.String:Reason:Failedtobindpropertiesunder‘spring.datasource.password‘tojav
分类:
编程语言 时间:
2020-05-31 11:18:26
阅读次数:
208
0. 字符串常用方法 a.查找_替换_统计 find() 掌握 注意: 找不到子串时,返回-1 rfind() 了解 index() 了解 注意: 找不到子串时,程序会崩溃,产生一条异常信息,导致程序无法执行 rindex() 了解 replace() 掌握 默认全部替换 count() 掌握 b. ...
分类:
其他好文 时间:
2020-05-31 11:17:02
阅读次数:
72
当然,我们也可以使用 find 命令查找并删除超过 x 天未访问的文件,不过 tmpwatch 可以一步到位,何乐而不为? tmpwatch 默认根据文件或目录的访问时间(access time)来决定删除哪些文件或目录。除此之外,你还可以根据 inode 改变时间(inode change tim ...
分类:
系统相关 时间:
2020-05-31 10:48:17
阅读次数:
64