MySQL修改密码 1 2 3 /usr/bin/MySQLadmin -u root password 'haCahpro' MySQL改root密码 MySQL -u root -p MySQL> SET PASSWORD FOR 'root'@'localhost'=PASSWORD('pa55word'); MySQL> QUIT SQL Error (1130): Host '192.168.1.126' is not allowed to connect to this MySQL server 通过HeidiSQL连接MySQ
remember me jwt http://blog.daocloud.io/5700.html
spring security http://www.semlinker.com/spring-security-remember-me/
https://www.cnblogs.com/zongmin/p/13783285.html
restful api remember me https://blog.csdn.net/liukangjie520/article/details/111617244
https://xie.infoq.cn/article/f83774aa8603152a82105ab69
MySQL用户与权限管理 //创建新用户 user0 1 2 3 4 5 6 7 8 cREATE USER user0 IDENTIFIED BY 'password0';``` \***密码要带引号 授权: ```bash grant all privileges on database0.* to user0@localhost identified by 'password0'; 授权之后该用户才能用他自
du command disk usage 1 2 3 4 ### 查看文件占用的磁盘空间 du --block-size=1 sparse-file-0 # Show top 10 biggest subdirs in the current dir. du -sk * | sort -nr | head -10 查看各子目录大小 -d, –max-depth 1 2 3 4 du -hd 1 du -hd1 du -h --max-depth=1 du -hd1 --exclude=proc 参数 1