mysql5.7.11对应的JDBC驱动是哪个版本
mysql5.7.11对应的JDBC驱动是5.1版本。
mysql 5.7 用8.0版本的驱动可以,5.1版本也可以,5.5、5.6、5.7都不可以。
MySQL Connectors 官方文档 上面只有version8.0和version5.1两个版本的文档
version8.0文档上有说明:Connector/J 8.0 provides compatibility with all the functionality of MySQL 5.5, 5.6, 5.7, and 8.0表示兼容。
service mysql start出错,mysql启动不了,解决mysql: unrecognized service错误的方法如下:
[root@ctohome.com ~]# service mysql start
mysql: unrecognized service
[root@ctohome.com ~]# service mysql restart
mysql: unrecognized service
[root@ctohome.com ~]# rpm -q mysql 查询发现mysql已经正常安装
mysql-5.1.52-jason.1
[root@ctohome.com ~]# /etc/rc.d/init.d/mysqld start 直接启动没问题
Starting mysqld: [ OK ]
[root@ctohome.com ~]# ls /etc/rc.d/init.d/mysqld -l
-rwxr-xr-x 1 root root 5509 Dec 18 02:31 /etc/rc.d/init.d/mysqld
[root@ctohome.com ~]# chkconfig mysqld on 设置mysql开机启动
[root@ctohome.com ~]# chmod 755 /etc/rc.d/init.d/mysqld 修改mysqld执行权限
[root@ctohome.com ~]# service mysqld start 搞定
Starting mysqld: [ OK ]
推荐于2017-04-21
transaction_isolation = REPEATABLE-READ
innodb_file_per_table
#innodb_status_file = 1
2016-07-12