云服务器
Pansanday
Talk is cheap, go through my blog.
展开
-
云服务器一二
1、华为云,安装mysql后客户端无法访问 问题描述:在华为云服务器上安装了mysql,但是客户端总是连接不上,遇到各种错误,修改、关闭了防火墙,却依然连接不上。后来在同事的点播下,到网页控制台上看了一下,果然,华为云对端口做了限制,在web页面上添加了端口号,客户端连接成功! 解决方案:网络控制台 -> 安全组 -> 添加规则 -> 添加端口,如下图所示 2、腾讯云存储,无原创 2017-07-05 14:07:42 · 560 阅读 · 1 评论 -
mysql Index column size too large错误解决方案
mysql在执行脚本时,报出了以下错误:index column size too large. the maximum column size is 767 bytes解决方案:1. 对数据库进行设置set global innodb_file_format = BARRACUDA;set global innodb_large_prefix = ON;如果使用的是云服务器,需要登录到网页管理,...原创 2018-02-26 12:50:52 · 25559 阅读 · 3 评论 -
云服务器 - CentOS FirewallD is not running
背景: 在阿里云centos操作系统上安装mysql数据库,默认不开启远端访问功能,需要设置防火墙,开放3306端口时,报出了FirewallDis not running的错误. 执行firewall-cmd --permanent --zone=public --add-port=3306/tcp,提示FirewallD is not running错误 解决方案: 1.开启...原创 2019-07-02 11:42:13 · 514 阅读 · 1 评论 -
云服务器 CentOS 7.2 安装 MySQL 5.7.26
1. 下载mysql的yum源 # cd /usr/local/ # wget http://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm 2. 安装mysql的yum源 # rpm -ivh mysql57-community-release-el7-11.noarch.rpm ...原创 2019-07-02 12:01:50 · 347 阅读 · 0 评论