最新 最热

Golang Leetcode 230. Kth Smallest Element in a BST.go

版权声明:原创勿转https://blog.csdn.net/anakinsun/article/details/89043444

2019-04-12
1

Leetcode Golang 100. Same Tree.go

版权声明:原创勿转https://blog.csdn.net/anakinsun/article/details/88935350

2019-04-12
1

mysql 5.7 root忘记密码 转

update mysql.user set authentication_string=password('123qwe') where user='root' and Host = 'localhost';

2019-04-10
1

Access denied for user 'root'@'localhost' 解决流程

update user set authentication_string =password('你的密码'),plugin='mysql_native_password' where user='root'

2019-04-10
1

sftp config 转

(adsbygoogle = window.adsbygoogle || []).push({});

2019-04-10
1

Chroot改变世界

chroot,即 change root directory (更改 root 目录)。在 linux 系统中,系统默认的目录结构都是以 `/`,即是以根 (root) 开始的。而在使用 chroot 之后,系统的目录结构将以指定的位置作为 `/` 位置。...

2019-04-09
1

分发系统——expect 原

(adsbygoogle = window.adsbygoogle || []).push({});

2019-04-03
1

Redis (error) NOAUTH Authentication required.解决方法

原文地址:https://blog.csdn.net/basycia/article/details/52176025 出现这个问题,可能是因为设置了密码,但是没有登录,可以尝试进行登录。

2019-03-16
0

mongodb之用户权限

db.createUser({user:'test',pwd:'123456',roles:[{role:'readWrite',db:'unittest'}]})

2019-03-14
1

怎样设置虚拟机和主机文件共享

ubuntu默认root密码不可用,需要用普通用户登录后设置: 输入sudo passwd root 提示你输入当前用户的密码,成功后再输入两次密码,这个后输入的就是你设置的root密码...

2019-02-14
0