ubuntu系统下安装配置 8.0.37的MySQL

ubuntu系统下安装配置MySQL 8.0.37-0ubuntu0.22.04.3服务

  1. 安装mysql
sudo apt update
sudo apt install mysql-server
sudo systemctl status mysql
  1. 进入mysql,创建特定用户,专门用于登录
sudo mysql;
create user 'user_name'@'ip_address' identified by "password";
grant all ON database_name.* to user_name@'ip_address' with grant option;
  1. 修改mysql的配置文件(/etc/mysql/mysql.conf.d/mysqld.cnf)
sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf
将bind-address = 0.0.0.0,并保存退出
  1. 重启mysql服务
sudo systemctl restart mysql
  1. 如果ufw是活跃状态的话,得开启3306端口,如果不是活跃状态就可以跳过了
sudo ufw allow 3306/tcp
  1. 如果云服务器的话记得在安全组中放行3306端口
  2. 客户端测试连接MySQL服务器

参考文献

https://www.myfreax.com/how-to-install-mysql-on-ubuntu-22-04/

相关推荐

  1. ubuntu系统安装配置 8.0.37MySQL

    2024-07-22 02:08:01       25 阅读
  2. ubuntu系统opencv编译安装

    2024-07-22 02:08:01       41 阅读
  3. ****LinuxMysql安装配置

    2024-07-22 02:08:01       58 阅读
  4. Ubuntu安装配置Nginx服务器终极指南

    2024-07-22 02:08:01       33 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-22 02:08:01       103 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-22 02:08:01       114 阅读
  3. 在Django里面运行非项目文件

    2024-07-22 02:08:01       93 阅读
  4. Python语言-面向对象

    2024-07-22 02:08:01       99 阅读

热门阅读

  1. Keras和Pytorch输入图像的张量维度

    2024-07-22 02:08:01       29 阅读
  2. 中介子方程六十五

    2024-07-22 02:08:01       30 阅读
  3. linux命令

    2024-07-22 02:08:01       25 阅读
  4. 1186. 删除一次得到子数组最大和

    2024-07-22 02:08:01       28 阅读
  5. GPT-LLM

    GPT-LLM

    2024-07-22 02:08:01      26 阅读
  6. 【开源库学习】libodb库学习(二)

    2024-07-22 02:08:01       24 阅读
  7. Vue-Plugin-HiPrint 打印设计

    2024-07-22 02:08:01       26 阅读
  8. [AT_past202107_c] 入力チェック 题解

    2024-07-22 02:08:01       32 阅读
  9. c语言--使用共用体判断一个机器的大小端模式

    2024-07-22 02:08:01       28 阅读
  10. linux 安装 大模型ollama

    2024-07-22 02:08:01       27 阅读