We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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>
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>
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 text was updated successfully, but these errors were encountered:
No branches or pull requests
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 🙂
The text was updated successfully, but these errors were encountered: