MySQL Upgrade 55 to 56: Unterschied zwischen den Versionen

Aus crazylinux.de
Zur Navigation springen Zur Suche springen
(init)
 
K (a)
Zeile 10: Zeile 10:


<syntaxhighlight lang="ini">
<syntaxhighlight lang="ini">
#/etc/mysql/my.cnf
#/etc/mysql/conf.d/settings.cnf
[mysqld]  
[mysqld]  
  innodb_file_per_table=0  
  innodb_file_per_table=0  
  innodb_checksum_algorithm=INNODB
  innodb_checksum_algorithm=INNODB
  binlog_checksum=NONE
  binlog_checksum=NONE
</syntaxhighlight>


<syntaxhighlight lang="php">
#/etc/mysql/conf.d/settings.cnf
#remove !!
#remove !!
table_cache
table_cache

Version vom 23. April 2018, 22:01 Uhr

https://askubuntu.com/questions/614886/upgrading-mysql-5-5-to-mysql-5-6-on-ubuntu-14-04-lts

apt-get remove mysql-server
apt-get autoremove
apt-get install mysql-client-5.6 mysql-client-core-5.6
apt-get install mysql-server-5.6


#/etc/mysql/conf.d/settings.cnf
[mysqld] 
 innodb_file_per_table=0 
 innodb_checksum_algorithm=INNODB
 binlog_checksum=NONE

#remove !!
table_cache


Links