由于deepin v20不能直接安装MysqL所以先进行换源,更换成阿里源,这样以后速度可以更快
修改文件 sudo vim /etc/apt/sources.List
#删除内容,并添加以下内容:## Generated by deepin-installerdeb [by-hash=force] https://mirrors.aliyun.com/deepin/ panda main contrib non-free
执行sudo apt-get update
执行sudo apt-get upgrade命令。
安装MysqL1.执行安装MysqL的语句
sudo apt-get install MysqL-server MysqL-clIEnt
2.查看可登陆账户并查看密码
3.获取到了登陆MysqL的账户密码
lin@lin-PC:~$ MysqL -udebian-sys-maint -pJsaNFiRzjlDAxiRNMysqL: [Warning] Using a password on the command line interface can be insecure.Welcome to the MysqL monitor. Commands end with ; or \g.Your MysqL connection ID is 2Server version: 5.7.21-1 (Debian)copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.Oracle is a registered Trademark of Oracle Corporation and/or itsaffiliates. Other names may be Trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.MysqL>
4.之后依次进入MysqL数据库,修改root密码,刷新缓存。之后就可以exit退出使用root账户登录了:
use MysqL;update user set plugin="MysqL_native_password",authentication_string=password('新密码') where user="root";FLUSH PRIVILEGES;
5.使用修改后的帐号密码登陆
MysqL -uroot -p000000
相关推荐:《mysql教程》 总结
以上是内存溢出为你收集整理的deepin v20如何安装mysql全部内容,希望文章能够帮你解决deepin v20如何安装mysql所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)