
linux
安之若素4869
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
xshell6连接虚拟机Ubuntu18连接
1.VMware的编辑中的更改设置中添加网络VMnet0,设为桥接 2.在VMware虚拟机设置中的网络适配器中选择自定义VMnet0 3.xshell6连接设置时的用户名不能用root,之前用root一直显示密码错误,改为普通用户就可以登录了 4.网上很多人说需要设置linux系统的静态ip与本地windowsip在同一个段,就是两者ip最后的部分的0-255可以不同,其余都需要相同,ubunt...原创 2019-07-03 21:56:45 · 1049 阅读 · 0 评论 -
flask项目部署时,Mysql在ubuntu18中 . Access denied for user 'root'@'localhost' (using password: YES)
密码问题,需要重置密码: 1. cd /etc/mysql/mysql.conf.d/ #找到文件所在目录,也有直接存储在/etc的:sudo vim /etc/my.cnf sudo vim mysqld.cnf update mysql.user set authentication_string=password(‘root’) where user=‘root’ ...原创 2019-07-04 19:35:41 · 547 阅读 · 0 评论