标签:com 图片 serve color github 安装部署 family 字符集 span
1.Azkaban的安装部署
azkaban的资源下载
http://azkaban.github.io/downloads.html
1.1.配置mysql
1.1.1.修改mysql的编码
(1)启动mysql
service mysqld start
(2) 登录mysql
mysql -uroot -p
(3)执行编码显示
show variables like ‘character%‘;
(4)在linux下修改mysql配置文件my.conf
vi /etc/my.conf
找到客户端配置[client] 在下面添加 (没有的话创建)
default-character-set=utf8 //默认字符集为utf8
在找到[mysqld] 在下面添加
character-set-server=utf8 //默认字符集为utf8
修改好后,重新启动mysql即可 service mysqld restart
登录MySQL查询一下
show variables like ‘character%‘;
标签:com 图片 serve color github 安装部署 family 字符集 span
原文地址:https://www.cnblogs.com/wangshuang123/p/10996987.html