博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu安装MySQL
阅读量:4940 次
发布时间:2019-06-11

本文共 762 字,大约阅读时间需要 2 分钟。

使用'sudo apt install mysql-server'命令进行安装。安装过程中,可能没有出现设置密码的步骤,官方文档解释如下:

connect to the server:

If you used --initialize but not --initialize-insecure to initialize the data directory, connect to the server as root using the random password that the server generated during the initialization sequence:

shell> mysql -u root -p

Enter password: (enter the random root password here)

Look in the server error log if you do not know this password.

If you used --initialize-insecure to initialize the data directory, connect to the server as root without a password:

shell> mysql -u root --skip-password

After connecting, assign a new root password:

mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'new_password';

转载于:https://www.cnblogs.com/RohanZhang/p/9814608.html

你可能感兴趣的文章
面试介绍项目经验(转)
查看>>
创建并设置ASP.NET的会话状态服务器(SQL State Server)
查看>>
<metro>Google的验证
查看>>
SQL中NUMERIC和DECIMAL的区别
查看>>
安卓课程设计:微课表
查看>>
Oracle 表的分组操作
查看>>
在OS X上的Intllij Idea中配置GlassFish
查看>>
用查表法快速转换yv12到RGB【转】
查看>>
使用公钥登录SSL
查看>>
hdu 1290_献给杭电五十周年校庆的礼物
查看>>
Nginx 入门
查看>>
openCR-用ROS代码点亮LED的方法
查看>>
豆瓣电影api
查看>>
BufferedInputStream和FileInputStream的区别
查看>>
二阶段之六
查看>>
微博爬虫 python
查看>>
中石油 【递归】普通递归关系
查看>>
vue报错Error in render: "TypeError: Cannot read property '0' of undefined"
查看>>
silverlight 隐藏ChildWindow 右上角的关闭按钮
查看>>
likely() 和 unlikely()
查看>>