我是靠谱客的博主 感动大神,最近开发中收集的这篇文章主要介绍deepin v20如何安装mysql,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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

deepin v20 换源和安装mysql

由于deepin v20不能直接安装mysql所以先进行换源,更换成阿里源,这样以后速度可以更快

修改文件 sudo vim /etc/apt/sources.list

#删除内容,并添加以下内容:
## Generated by deepin-installer
deb [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 -pjSaNFiRzjlDAxiRN
mysql: [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 2
Server 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 its
affiliates. Other names may be trademarks of their respective
owners.

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的全部内容,希望文章能够帮你解决deepin v20如何安装mysql所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(133)

评论列表共有 0 条评论

立即
投稿
返回
顶部