為kettle使用資源庫創建表空間
用戶名:repo
密碼:Repo#123
創建mysql表空間
create DATABASE KETTLE DEFAULT CHARACTER set utf8 COLLATE utf8_general_ci;
創建kettle資源庫用戶
create user repo identified with mysql_native_password by 'Repo#123';
給資源庫用戶賦權
grant all on KETTLE.* to repo;
在連接資源庫的時候需要配置utf8相關參數,防止報錯。