前言 StreamAPI是java8提供的一种方便,高效操作容器的工具。 简单使用 import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; public class Client { pu ...
分类:
编程语言 时间:
2021-04-13 11:49:18
阅读次数:
0
一、Q:Error connecting to database: Access denied for user ‘zabbix’ @ ‘localhost’ to database ‘zabbix’(PASSWORD:YES) 浏览器输入http://ServerIP/zabbix 查看日志 ta ...
分类:
其他好文 时间:
2021-04-12 12:43:00
阅读次数:
0
1045 Access denied for user 'root'@'localhost' (using password:YES) 这个意思是说:用户“root”@本地主机的访问被拒绝 1、首先修改my.ini,在文件中加入skip-grant-tables,重新启动MySQL服务 2、cmd ...
分类:
数据库 时间:
2021-04-12 11:38:52
阅读次数:
0
参考:https://blog.csdn.net/mhshencaobo/article/details/85269464 给发布的文件夹加上一个everyone的用户组并赋予全部权限即可: ...
分类:
数据库 时间:
2021-04-08 13:15:09
阅读次数:
0
问题原因:使用存储的旧账户访问新的git仓库 1. Linux 检查~/.git-credentials 修改或删除其中的旧的账户密码,新打开命令行窗口重新push 2. MAC 是cmd + space 搜索钥匙串访问,找到github能看到保存的账户和密码 3. WINDOWS 控制面板->所有 ...
分类:
其他好文 时间:
2021-04-07 11:37:54
阅读次数:
0
问题: 合并两个有序链表 链表L1: 1->2->4->9 链表L2: 3->5>6->10->13 合并后:1->2->3->4->5->6->9->10->13 1. 准备数据结构 及测试数据 Node节点 public class Node { public Integer value; pu ...
分类:
其他好文 时间:
2021-04-06 14:50:49
阅读次数:
0
mysql命令行报错: 如下: mysql> use mysqlERROR 1044 (42000): Access denied for user ''@'localhost' to database 'mysql' 解决方法: 打开my.ini(linux下时my.cnf)文件,在[mysqld ...
分类:
数据库 时间:
2021-03-18 14:24:12
阅读次数:
0
解决 permission denied: "RI_ConstraintTrigger_a_17918" is a system trigger 的问题。 ...
分类:
其他好文 时间:
2021-03-15 11:31:51
阅读次数:
0
VS Code 装好ESLint 插件报黄线的问题,具体解决方法如下所示: ESLint is disabled since its execution has not been approved or denied yet. Use the light bulb menu to open the ...
分类:
移动开发 时间:
2021-03-15 10:51:43
阅读次数:
0
Design HashMap (E) 题目 Design a HashMap without using any built-in hash table libraries. To be specific, your design should include these functions: pu ...
分类:
其他好文 时间:
2021-03-08 14:02:58
阅读次数:
0