Creating a new profile #2224
-
Hello, i am trying to start to IBM course for COBOL, but i'm finding really hard to create a ZOWE profile, i already have the ID and PASSWORD provided by IBM, i saw a lot of information but nothing seems to work. I have the 7.28.2 version |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
If you have something like this in ~/.zowe/zowe.config.json (sample from the OMP COBOL programming course): {
"$schema": "./zowe.schema.json",
"profiles": {
"LearnCOBOL": {
"properties": {
"host": "204.90.115.200"
},
"profiles": {
"zosmf": {
"type": "zosmf",
"properties": {
"port": 10443
}
}
},
"secure": [
"user",
"password"
]
},
"base": {
"type": "base",
"properties": {
"rejectUnauthorized": false
},
"secure": []
}
},
"defaults": {
"zosmf": "LearnCOBOL.zosmf",
"base": "base"
},
"plugins": []
} You would likely need to change the values for In Zowe CLI, you would then run the |
Beta Was this translation helpful? Give feedback.
-
When a put this in the terminal: |
Beta Was this translation helpful? Give feedback.
-
Hi, thanks for the answered ! I manage to go to this part, but now i have this error when i try to open the file, do you know what can i do ? Thank you |
Beta Was this translation helpful? Give feedback.
-
For further assistance with the Cobol Programming course, you may have a better turnaround by reaching out in the Cobol-Programming-Course channel in the OMP Slack space. |
Beta Was this translation helpful? Give feedback.
If you have something like this in ~/.zowe/zowe.config.json (sample from the OMP COBOL programming course):