deepin v20如何安装mysql

deepin v20如何安装mysql,第1张

概述deepin v20如何安装mysql deepin v20不能直接安装MysqL所以先进行换源,更换成阿里源,这样以后速度可以更快,今天我们就来介绍一下deepin v20安装MysqL的方法,有需要的可以参考一下。

deepin v20 换源和安装MysqL

由于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命令。

安装MysqL

1.执行安装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所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1149947.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存