mysql安装与启动

Posted qiushanjian

tags:

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

安装

sudo apt-get install mysql-server mysql-client
然后按照提示输入

管理服务

  • 启动
service mysql start
  • 停止
service mysql stop
  • 重启

service mysql restart

设置远程连接

  • 找到mysql配置文件并修改
sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf
将bind-address=127.0.0.1注释
  • 登录mysql,运行命令
grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘mysql‘ with grant option;
flush privileges;
  • 重启mysql
    •   service mysql restart

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

一张图,理顺 Spring Boot应用在启动阶段执行代码的几种方式

一张图帮你记忆,Spring Boot 应用在启动阶段执行代码的几种方式

一张图,理顺 Spring Boot应用在启动阶段执行代码的几种方式

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

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

MySQL 安装与启动