The example CLI command for creating a db2 profile is throwing the following error
Unknown argument: p
Command failed due to improper syntax
Command entered: "zowe profiles create db2 myprofile -H myhost -P myport -u myuser -p mypw -d mydb"
Available commands are "zosmf-profile, tso-profile, ssh-profile, db2-profile, base-profile".
Use "zowe profiles create --help" to view groups, commands, and options.
Error Details:
Unknown argument: p
instead of
zowe profiles create db2 <profile name> -H <host> -P <port> -u <user> -p <password> -d <database>
it should be
zowe profiles create db2 <profile name> -H <host> -P <port> -u <user> --pw <password> -d <database>
according to the CLI help
--password | --pass | --pw
if I am not missing something, readme file needs a quick change 🙂
The example CLI command for creating a db2 profile is throwing the following error
instead of
zowe profiles create db2 <profile name> -H <host> -P <port> -u <user> -p <password> -d <database>it should be
zowe profiles create db2 <profile name> -H <host> -P <port> -u <user> --pw <password> -d <database>according to the CLI help
--password | --pass | --pw
if I am not missing something, readme file needs a quick change 🙂