安装 更新系统 sudo yum update 下载mysql 8.0的repo sudo wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm 预处理刚下载的repo sudo rpm -Uvh mysq ...
分类:
数据库 时间:
2020-06-20 13:22:52
阅读次数:
58
新安装Ubuntu20服务版, 安装mysql8 后 使用以下语句更改密码 update mysql.user set authentication_string='password' where user='root'; 出现show databases,不能使用。 最后无法只能重新安装mysql ...
分类:
数据库 时间:
2020-06-19 23:19:41
阅读次数:
205
centos7安装Mysql爬坑记录 查看是否已安装 使用下列命令查看是否已经安装过mysql/mariadb/PostgreSQL 如果未安装,不返回任何结果(ECS的centos镜像默认未安装任何数据库) [root@Gwj ~]# rpm -qa|grep -i mysql [root@Gwj ...
分类:
数据库 时间:
2020-06-19 21:23:09
阅读次数:
64
第一步,下载MySQL安装 [root@localhost ~]# cd /home/data/[root@localhost data]# lsget-docker.sh nginx-1.10.1 nginx-1.10.1.tar.gz redis-5.0.3 redis-5.0.3.tar.gz ...
分类:
数据库 时间:
2020-06-19 20:58:38
阅读次数:
68
Xshell 6 (Build 0189)Copyright (c) 2002 NetSarang Computer, Inc. All rights reserved. Type `help' to learn how to use Xshell prompt.[C:\~]$ Connecting ...
分类:
数据库 时间:
2020-06-18 21:27:07
阅读次数:
89
一、说明 数据库名称 端口号 角色 mysql-m1 3320 master mysql-s1 3321 slave1 二、免安装数据库 1、免安装mysql 下载地址:https://dev.mysql.com/downloads/mysql/ ;注意下载(mysql-8.0.20-winx64. ...
分类:
数据库 时间:
2020-06-18 11:21:26
阅读次数:
89
前期准备 准备两台Linux,一主,一从,具体Linux安装MySQL操作步骤:点我直达 集群搭建 注意事项 一主可以多从 一从只能一主 关闭主从机器的防火墙策略 chkconfig iptables off service iptables stop 主服务器配置 修改my.cnf文件 vim / ...
分类:
数据库 时间:
2020-06-17 23:13:33
阅读次数:
107
安装Mysql 1.拉取云端镜像仓库中的mysql 版本自己选 docker pull mysql:5.6 2.运行容器 docker run --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.6 这个时候可以直接用 ...
分类:
数据库 时间:
2020-06-17 18:34:13
阅读次数:
52
在安装mysql时,出现“The security settings could not be applied to the database because the connection has failed with the following error. Error Nr. 1045 Acc ...
分类:
移动开发 时间:
2020-06-17 15:33:57
阅读次数:
100
准备工作 下载MySQL 去官网下载MySQL:点我直达 百度云盘地址:链接: https://pan.baidu.com/s/1qBN4r6t8gvq-I4CFfQQ-EA 密码: hei3 检查Linux是否自带MySQL 若查询出结果,代码已经安装过MySQL,我们卸载Linux自带的版本 查 ...
分类:
数据库 时间:
2020-06-17 01:08:34
阅读次数:
112