安装MySql

Posted windlog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装MySql相关的知识,希望对你有一定的参考价值。

mysql的安装

下载地址:https://downloads.mysql.com/archives/community/

name=MySQL 5.7 Community Server
33 baseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/7/$basearch/

wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm
rpm -ivh mysql57-community-release-el7-3.noarch.rpm
yum install -y mysql-community-server

查找安装位置:

rpm -qa | grep mysql
rpm -ql mysql-community-client-5.7.29-1.el7.x86_64
rpm -qal | grep mysql
yum search mysql
find / -name mysql
which mysql
whereis mysql
开启软件
ps -aux | grep mysql
ps -el | grep mysql

systemctl start mysqld
systemctl enable mysqld
grep ‘password‘ /var/log/mysqld.log
mysql -u root -p

ALTER USER ‘root‘@‘localhost‘ IDENTIFIED BY ‘Root123@‘;

开启远程访问

在mysql中执行:
GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘Root123@‘ WITH GRANT OPTION;

firewall-cmd --zone=public --add-port=3306/tcp --permanent
重启防火墙:firewall-cmd --reload

以上是关于安装MySql的主要内容,如果未能解决你的问题,请参考以下文章

从mysql的片段中加载ListView

连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段

使用 json rereiver php mysql 在片段中填充列表视图

在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途

PHP代码-psysh调试代码片段工具

关于mysql驱动版本报错解决,Cause: com.mysql.jdbc.exceptions.jdbc4Unknown system variable ‘query_cache_size(代码片段