之前使用aws 的 rds,解决时区问题很复杂,需要折腾下。
现在变的很简单了,轻轻一点解决问题。
参考文章:
http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.LocalTimeZone
已经在文档里面说明了,只需要增加参数就行了。
在操作界面找到:
在参数里面配置增加一个 time_zone 参数。
然后在下拉框里面找到 Asia/Shanghai 即可。
同样的配置utf8也可以在这个参数里面配置。
修改完成之后看看是否需要重启。
修改前:
mysql> show variables like '%time_zone%';
+------------------+--------+
| Variable_name | Value |
+------------------+--------+
| system_time_zone | CST |
| time_zone | SYSTEM |
+------------------+--------+
2 rows in set (0.01 sec)
修改后查看:
mysql> show variables like '%time_zone%';
+------------------+---------------+
| Variable_name | Value |
+------------------+---------------+
| system_time_zone | UTC |
| time_zone | Asia/Shanghai |
+------------------+---------------+
2 rows in set (0.00 sec)
查看utf8编码:
mysql> show variables like '%character%';
+--------------------------+----------------------------+
| Variable_name | Value |
+--------------------------+----------------------------+
| character_set_client | utf8 |
| character_set_connection | utf8 |
| character_set_database | utf8 |
| character_set_filesystem | binary |
| character_set_results | utf8 |
| character_set_server | utf8mb4 |
| character_set_system | utf8 |
| character_sets_dir | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
8 rows in set (0.01 sec)utf8
总结
aws这方面还是非常方便的,也是需要慢慢学习熟悉的。