You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- alter table t_cluster
- add private_key varchar(1000) null comment 'PEM格式私钥内容' after sk;
-
- alter table t_cluster
- add passphrase varchar(100) null comment ' 私钥的加密口令' after private_key;
-
- alter table t_cluster
- modify auth_type tinyint(1) not null comment '认证方式:0->ak,sk;1->user,pwd;2->token;3->ssh密钥认证;';
|