linux安装mysql

安装

  1. 查看系统是否安装了mysql软件
rpm -qa|grep -i mysql
  1. 下载rpm包并安装
wget http://repo.mysql.com//mysql57-community-release-el7-7.noarch.rpm
rpm -ivh mysql57-community-release-el7-7.noarch.rpm
  1. yum安装mysql
yum install mysql-server
yum install mysql-devel
yum install mysql
  1. 检查mysql的状态
systemctl status mysqld
  1. 数据库初始化
 mysqld --initialize --user=mysql
  1. 启动MySQL数据库
 systemctl start mysqld
  1. 查看mysql状态
systemctl status mysqld
  1. 查看mysql临时密码
grep 'temporary password' /var/log/mysqld.log
[root@iZbp16mt5q458fcs0sgb8dZ java]# grep 'temporary password' /var/log/mysqld.log
2021-03-31T03:26:51.646893Z 1 [Note] A temporary password is generated for root@localhost: G6ygwurfab?,
  1. 使用临时密码登陆
mysql -uroot -p临时密码
  1. 修改密码,然后刷新
ALTER USER USER() IDENTIFIED BY 'newPassword';
flush privileges;

开放端口

  • 查看防火墙状态
firewall-cmd --state
  • 查看开放的端口
firewall-cmd --list-ports
  • 开放3306端口,后刷新
firewall-cmd --permanent --add-port=3306/tcp
firewall-cmd --reload

乱码解决方案

  • 查看默认的编码格式
show variables like "%char%";
  • 设置默认编码格式
SET NAMES utf8
  • 修改配置文件/etc/my.cnf,然后重启
[mysqld]
character-set-server=utf8
--------------------
systemctl restart mysqld.service

常见问题

  • ubuntu中mysql远程连接错误2003

    编辑 MySQL 服务器的配置文件 /etc/mysql/mysql.conf.d/mysqld.cnf,找到 bind-address 行并将其注释掉,然后重新启动 MySQL 服务器。

  • navicat 连接错误 2059

    ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '密码';
    
  • The user specified as a definer (‘root’@‘%’) does not exist

    create user 'root'@'%' identified by 'password';
    grant all privileges on *.* to 'root'@'%';
    
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值