timezone

DataBase/Mysql 2020. 8. 28. 11:09

SET GLOBAL time_zone='Asia/Seoul';

SET time_zone='Asia/Seoul';

Posted by 철냄비짱
,

Show variables like"c%";

 

ALTER TABLE cms_account converttocharset utf8;

ALTER DATABASE sigongweb_db charset utf8;

Posted by 철냄비짱
,

max_allowed_packet

DataBase/Mysql 2020. 8. 28. 11:06

SET GLOBAL max_allowed_packet = 1024 * 1024 * 16;

SET SESSION max_allowed_packet = 1024 * 1024 * 16;

Posted by 철냄비짱
,