MySQL
有一种人仅仅是认识就很好了
这个作者很懒,什么都没留下…
展开
-
官网如何下载 Linux 上需要的 MySQL
1.输入MySQL 官网地址 https://dev.mysql.com/ 选择 download ->Community->MySQL Community Server点击 MySQL Community Server 进入 MySQL Community Server 这个页面,如果想下载 5.6 5.5 等版本,点击这个连接如果想下载新版本的原创 2018-02-01 13:51:14 · 4446 阅读 · 1 评论 -
net start mysql 发生系统错误 5。 拒绝访问。的解决方法
出现下图情况解决方法:使用管理员权限打开cmd.右键以管理员权限打开。或者是右键发送快捷方式到桌面,右键快捷方式-》属性-》高级-》用管理员身份运行。然后打开桌面的cmd就是以管理员的方式打开了。完成后,进入到mysql 的bin目录下,输入net start mysql 启动正常:注:MySQL 启动:输入:net start MySQL 或者 mysql...原创 2018-08-07 17:49:06 · 101943 阅读 · 10 评论 -
java jdbc连接数据库 SqlConnectionUtil
package org.wjjia.util.com;import java.sql.Connection;import java.sql.DriverManager;import java.sql.SQLException;public class MySqlConnection { //MySQL数据库连接驱动 private final String DRIVER="com.mysql.jd...原创 2018-06-12 13:48:41 · 1413 阅读 · 0 评论 -
Cannot allocate memory for the buffer pool
Cannot allocate memory for the buffer pool翻译过来就是:无法为缓冲池分配内存。简单解释就是没法为mysql的buffer pool分配128M的内存。进入 vi /etc/my.cnf 修改 InnoDB缓冲池大小my.cnf 的innodb_buffer_pool_size 参数默认是注释的。开启并修改内存大小即可。...原创 2018-03-17 15:23:06 · 5432 阅读 · 0 评论 -
unknown variable 'default-character-set=utf8'
解决方法:default-character-set=utf8换成default_character_set=utf8原创 2018-03-17 14:57:47 · 5245 阅读 · 5 评论 -
[ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as r
[ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!此处 mysql是出于安全考虑,默认拒绝用root账号启动mysql服务。解决方法:1.通过在命令后面加上--user=root 进行强制使用root账号启动。这样是最快的。cd /etc/i...原创 2018-03-17 14:41:55 · 112684 阅读 · 7 评论 -
[Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_ti
解决方法:在 vi /etc/my.cnf 文件中加上 : explicit_defaults_for_timestamp=true 。保存后再次启动就可以了。原创 2018-03-17 14:26:24 · 37303 阅读 · 1 评论 -
libmysqlclient.so.18()(64bit) is needed by (installed) postfix-2:2.10.1-6.el7.x86_64 怎么解决
卸载MySQL 时有文件卸载不了:[root@iZwz95awar071umsfgn716Z init.d]# rpm -qa |grep -i mysqlmysql-community-libs-5.6.39-2.el7.x86_64mysql-community-common-5.6.39-2.el7.x86_64[root@iZwz95awar071umsfgn716Z init.d]# r...原创 2018-03-11 13:28:13 · 15051 阅读 · 0 评论 -
阿里云中安装MySQL数据库的正确方式
yum快速安装mysql[root@iZwz95awar071umsfgn716Z ~]# cd / #########进入根目录[root@iZwz95awar071umsfgn716Z /]# rpm -Uvh http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm ####新增yum源Retrieving...原创 2018-03-09 13:28:58 · 12634 阅读 · 4 评论 -
Windows MySQL 下载及安装教程
下载:进入上图页面后,一直往下拉,看到下面的页面就可以进行下载了下载地址:https://dev.mysql.com/downloads/mysql/下载完成,进行解压我的安装目录为C:/mysql-5.7.23-winx64,环境配置:路径中的配置:进入安装根目录(C:/mysql-5.7.23-winx64)。新建配置文件的my.ini(必须为...原创 2018-08-03 11:22:39 · 27642 阅读 · 2 评论