Ubuntu安装MySQL

安装

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install mysql-server-8.0 -y

初始化

sudo mysql_secure_installation
Securing the MySQL server deployment.

Connecting to MySQL using a blank password.

VALIDATE PASSWORD COMPONENT can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD component?

Press y|Y for Yes, any other key for No: n
Please set the password for root here.

New password: 

Re-enter new password: 
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

Remove anonymous users? (Press y|Y for Yes, any other key for No) : n

 ... skipping.


Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : n

 ... skipping.
By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.


Remove test database and access to it? (Press y|Y for Yes, any other key for No) : n

 ... skipping.
Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : n

 ... skipping.
All done! 

查看MySQL状态

sudo systemctl status mysql.service

登陆

sudo mysql -u root -p

MySQL命令行

update mysql.user set host='%' where user='root';
flush privileges;
alter user 'root'@'%' identified with mysql_native_password by '123456';
flush privileges;

验证查看

select authentication_string,user,host,plugin from mysql.user where user='root';
mysql> select authentication_string,user,host,plugin from mysql.user where user='root';
+-------------------------------------------+------+------+-----------------------+
| authentication_string                     | user | host | plugin                |
+-------------------------------------------+------+------+-----------------------+
| *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 | root | %    | mysql_native_password |
+-------------------------------------------+------+------+-----------------------+
1 row in set (0.06 sec)

修改mysqld.cnf  /etc/mysql/mysql.conf.d/mysqld.cnf

bind-address		= 0.0.0.0
mysqlx-bind-address	= 127.0.0.1

忘记密码


在[mysqld]的段中加上一句:skip-grant-tables保存并退出
vim /etc/my.cnf
[mysqld]
......
skip-grant-tables

systemctl restart mysqld.service 

mysql -u root
use mysql;
update user set authentication_string='' where user='root';
exit;

屏蔽 skip-grant-tables:vim /etc/my.cnf,在skip-grant-tables前面添加# 

systemctl restart mysqld.service 
mysql -u root
use mysql;
update user set host='%' where user='root'; 
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root';
FLUSH PRIVILEGES;
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
Ubuntu安装MySQL有以下步骤: 1. 首先,卸载掉原来的MySQL。可以执行以下命令来清理残留数据并验证原有主机上是否安装MySQL: - sudo apt-get autoremove --purge mysql-server - sudo apt-get remove mysql-server - sudo apt-get autoremove mysql-server - sudo apt-get remove mysql-common - dpkg -l | grep ^rc | awk '{print $2}' | sudo xargs dpkg -P 2. 更新软件并安装MySQL: - sudo apt-get install update - sudo apt-get install upgrade - sudo apt-get install mysql-server - sudo apt-get install mysql-client - sudo apt-get install libmysqlclient-dev [2] 3. 安装完成后,可以通过以下命令来查看安装情况: - sudo netstat -tap | grep mysql 这样就可以在Ubuntu上成功安装MySQL了。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [ubuntu篇---ubuntu安装mysql教程](https://blog.csdn.net/m0_46825740/article/details/128145298)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *2* [Ubuntu如何安装Mysql](https://blog.csdn.net/weixin_44430893/article/details/119296615)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

人海中的海盗

你的打赏将是对我的激励

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值