├── .gitignore ├── LICENSE ├── MAINTAINERS.md ├── README.md └── docs ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _layouts └── default.html ├── assets ├── css │ └── style.scss ├── favicon.ico └── img │ ├── arrow_up.png │ ├── badge_installation_using_zosmf.png │ ├── badge_tcpip_config_nca.png │ ├── badge_zert_config_nca.png │ ├── badge_zosmf_experienced.png │ ├── capacity_provisioning.png │ ├── configuration_assistant.png │ ├── dataset_search.png │ ├── import_manager.png │ ├── incident_log.png │ ├── management_services_catalog.png │ ├── rest_api.png │ ├── security_configuration_assistant.png │ ├── software_services.png │ ├── sysplex_management.png │ ├── workflows.png │ ├── workload_management.png │ ├── zert_network_analyzer.png │ ├── zos_operator_consoles.png │ └── zosmf_ansible.png └── index.md /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | # MAINTAINERS 2 | The following is the list of committers that currently have write access to the zOSMF repository. 3 | 4 | - Yun Juan Yang - yunyyang@cn.ibm.com 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # z/OSMF 2 | Welcome to IBM z/OS Management Facility (z/OSMF) One Stop Hub website and sample code. -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem "github-pages", group: :jekyll_plugins 4 | 5 | gem "webrick", "~> 1.7" 6 | -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | activesupport (7.1.3.2) 5 | base64 6 | bigdecimal 7 | concurrent-ruby (~> 1.0, >= 1.0.2) 8 | connection_pool (>= 2.2.5) 9 | drb 10 | i18n (>= 1.6, < 2) 11 | minitest (>= 5.1) 12 | mutex_m 13 | tzinfo (~> 2.0) 14 | addressable (2.8.6) 15 | public_suffix (>= 2.0.2, < 6.0) 16 | base64 (0.2.0) 17 | bigdecimal (3.1.7) 18 | coffee-script (2.4.1) 19 | coffee-script-source 20 | execjs 21 | coffee-script-source (1.12.2) 22 | colorator (1.1.0) 23 | commonmarker (0.23.10) 24 | concurrent-ruby (1.2.3) 25 | connection_pool (2.4.1) 26 | dnsruby (1.71.0) 27 | simpleidn (~> 0.2.1) 28 | drb (2.2.1) 29 | em-websocket (0.5.3) 30 | eventmachine (>= 0.12.9) 31 | http_parser.rb (~> 0) 32 | ethon (0.16.0) 33 | ffi (>= 1.15.0) 34 | eventmachine (1.2.7) 35 | execjs (2.9.1) 36 | faraday (2.9.0) 37 | faraday-net_http (>= 2.0, < 3.2) 38 | faraday-net_http (3.1.0) 39 | net-http 40 | ffi (1.16.3) 41 | forwardable-extended (2.6.0) 42 | gemoji (4.1.0) 43 | github-pages (231) 44 | github-pages-health-check (= 1.18.2) 45 | jekyll (= 3.9.5) 46 | jekyll-avatar (= 0.8.0) 47 | jekyll-coffeescript (= 1.2.2) 48 | jekyll-commonmark-ghpages (= 0.4.0) 49 | jekyll-default-layout (= 0.1.5) 50 | jekyll-feed (= 0.17.0) 51 | jekyll-gist (= 1.5.0) 52 | jekyll-github-metadata (= 2.16.1) 53 | jekyll-include-cache (= 0.2.1) 54 | jekyll-mentions (= 1.6.0) 55 | jekyll-optional-front-matter (= 0.3.2) 56 | jekyll-paginate (= 1.1.0) 57 | jekyll-readme-index (= 0.3.0) 58 | jekyll-redirect-from (= 0.16.0) 59 | jekyll-relative-links (= 0.6.1) 60 | jekyll-remote-theme (= 0.4.3) 61 | jekyll-sass-converter (= 1.5.2) 62 | jekyll-seo-tag (= 2.8.0) 63 | jekyll-sitemap (= 1.4.0) 64 | jekyll-swiss (= 1.0.0) 65 | jekyll-theme-architect (= 0.2.0) 66 | jekyll-theme-cayman (= 0.2.0) 67 | jekyll-theme-dinky (= 0.2.0) 68 | jekyll-theme-hacker (= 0.2.0) 69 | jekyll-theme-leap-day (= 0.2.0) 70 | jekyll-theme-merlot (= 0.2.0) 71 | jekyll-theme-midnight (= 0.2.0) 72 | jekyll-theme-minimal (= 0.2.0) 73 | jekyll-theme-modernist (= 0.2.0) 74 | jekyll-theme-primer (= 0.6.0) 75 | jekyll-theme-slate (= 0.2.0) 76 | jekyll-theme-tactile (= 0.2.0) 77 | jekyll-theme-time-machine (= 0.2.0) 78 | jekyll-titles-from-headings (= 0.5.3) 79 | jemoji (= 0.13.0) 80 | kramdown (= 2.4.0) 81 | kramdown-parser-gfm (= 1.1.0) 82 | liquid (= 4.0.4) 83 | mercenary (~> 0.3) 84 | minima (= 2.5.1) 85 | nokogiri (>= 1.13.6, < 2.0) 86 | rouge (= 3.30.0) 87 | terminal-table (~> 1.4) 88 | github-pages-health-check (1.18.2) 89 | addressable (~> 2.3) 90 | dnsruby (~> 1.60) 91 | octokit (>= 4, < 8) 92 | public_suffix (>= 3.0, < 6.0) 93 | typhoeus (~> 1.3) 94 | html-pipeline (2.14.3) 95 | activesupport (>= 2) 96 | nokogiri (>= 1.4) 97 | http_parser.rb (0.8.0) 98 | i18n (1.14.4) 99 | concurrent-ruby (~> 1.0) 100 | jekyll (3.9.5) 101 | addressable (~> 2.4) 102 | colorator (~> 1.0) 103 | em-websocket (~> 0.5) 104 | i18n (>= 0.7, < 2) 105 | jekyll-sass-converter (~> 1.0) 106 | jekyll-watch (~> 2.0) 107 | kramdown (>= 1.17, < 3) 108 | liquid (~> 4.0) 109 | mercenary (~> 0.3.3) 110 | pathutil (~> 0.9) 111 | rouge (>= 1.7, < 4) 112 | safe_yaml (~> 1.0) 113 | jekyll-avatar (0.8.0) 114 | jekyll (>= 3.0, < 5.0) 115 | jekyll-coffeescript (1.2.2) 116 | coffee-script (~> 2.2) 117 | coffee-script-source (~> 1.12) 118 | jekyll-commonmark (1.4.0) 119 | commonmarker (~> 0.22) 120 | jekyll-commonmark-ghpages (0.4.0) 121 | commonmarker (~> 0.23.7) 122 | jekyll (~> 3.9.0) 123 | jekyll-commonmark (~> 1.4.0) 124 | rouge (>= 2.0, < 5.0) 125 | jekyll-default-layout (0.1.5) 126 | jekyll (>= 3.0, < 5.0) 127 | jekyll-feed (0.17.0) 128 | jekyll (>= 3.7, < 5.0) 129 | jekyll-gist (1.5.0) 130 | octokit (~> 4.2) 131 | jekyll-github-metadata (2.16.1) 132 | jekyll (>= 3.4, < 5.0) 133 | octokit (>= 4, < 7, != 4.4.0) 134 | jekyll-include-cache (0.2.1) 135 | jekyll (>= 3.7, < 5.0) 136 | jekyll-mentions (1.6.0) 137 | html-pipeline (~> 2.3) 138 | jekyll (>= 3.7, < 5.0) 139 | jekyll-optional-front-matter (0.3.2) 140 | jekyll (>= 3.0, < 5.0) 141 | jekyll-paginate (1.1.0) 142 | jekyll-readme-index (0.3.0) 143 | jekyll (>= 3.0, < 5.0) 144 | jekyll-redirect-from (0.16.0) 145 | jekyll (>= 3.3, < 5.0) 146 | jekyll-relative-links (0.6.1) 147 | jekyll (>= 3.3, < 5.0) 148 | jekyll-remote-theme (0.4.3) 149 | addressable (~> 2.0) 150 | jekyll (>= 3.5, < 5.0) 151 | jekyll-sass-converter (>= 1.0, <= 3.0.0, != 2.0.0) 152 | rubyzip (>= 1.3.0, < 3.0) 153 | jekyll-sass-converter (1.5.2) 154 | sass (~> 3.4) 155 | jekyll-seo-tag (2.8.0) 156 | jekyll (>= 3.8, < 5.0) 157 | jekyll-sitemap (1.4.0) 158 | jekyll (>= 3.7, < 5.0) 159 | jekyll-swiss (1.0.0) 160 | jekyll-theme-architect (0.2.0) 161 | jekyll (> 3.5, < 5.0) 162 | jekyll-seo-tag (~> 2.0) 163 | jekyll-theme-cayman (0.2.0) 164 | jekyll (> 3.5, < 5.0) 165 | jekyll-seo-tag (~> 2.0) 166 | jekyll-theme-dinky (0.2.0) 167 | jekyll (> 3.5, < 5.0) 168 | jekyll-seo-tag (~> 2.0) 169 | jekyll-theme-hacker (0.2.0) 170 | jekyll (> 3.5, < 5.0) 171 | jekyll-seo-tag (~> 2.0) 172 | jekyll-theme-leap-day (0.2.0) 173 | jekyll (> 3.5, < 5.0) 174 | jekyll-seo-tag (~> 2.0) 175 | jekyll-theme-merlot (0.2.0) 176 | jekyll (> 3.5, < 5.0) 177 | jekyll-seo-tag (~> 2.0) 178 | jekyll-theme-midnight (0.2.0) 179 | jekyll (> 3.5, < 5.0) 180 | jekyll-seo-tag (~> 2.0) 181 | jekyll-theme-minimal (0.2.0) 182 | jekyll (> 3.5, < 5.0) 183 | jekyll-seo-tag (~> 2.0) 184 | jekyll-theme-modernist (0.2.0) 185 | jekyll (> 3.5, < 5.0) 186 | jekyll-seo-tag (~> 2.0) 187 | jekyll-theme-primer (0.6.0) 188 | jekyll (> 3.5, < 5.0) 189 | jekyll-github-metadata (~> 2.9) 190 | jekyll-seo-tag (~> 2.0) 191 | jekyll-theme-slate (0.2.0) 192 | jekyll (> 3.5, < 5.0) 193 | jekyll-seo-tag (~> 2.0) 194 | jekyll-theme-tactile (0.2.0) 195 | jekyll (> 3.5, < 5.0) 196 | jekyll-seo-tag (~> 2.0) 197 | jekyll-theme-time-machine (0.2.0) 198 | jekyll (> 3.5, < 5.0) 199 | jekyll-seo-tag (~> 2.0) 200 | jekyll-titles-from-headings (0.5.3) 201 | jekyll (>= 3.3, < 5.0) 202 | jekyll-watch (2.2.1) 203 | listen (~> 3.0) 204 | jemoji (0.13.0) 205 | gemoji (>= 3, < 5) 206 | html-pipeline (~> 2.2) 207 | jekyll (>= 3.0, < 5.0) 208 | kramdown (2.4.0) 209 | rexml 210 | kramdown-parser-gfm (1.1.0) 211 | kramdown (~> 2.0) 212 | liquid (4.0.4) 213 | listen (3.9.0) 214 | rb-fsevent (~> 0.10, >= 0.10.3) 215 | rb-inotify (~> 0.9, >= 0.9.10) 216 | mercenary (0.3.6) 217 | mini_portile2 (2.8.5) 218 | minima (2.5.1) 219 | jekyll (>= 3.5, < 5.0) 220 | jekyll-feed (~> 0.9) 221 | jekyll-seo-tag (~> 2.1) 222 | minitest (5.22.3) 223 | mutex_m (0.2.0) 224 | net-http (0.4.1) 225 | uri 226 | nokogiri (1.16.3) 227 | mini_portile2 (~> 2.8.2) 228 | racc (~> 1.4) 229 | octokit (4.25.1) 230 | faraday (>= 1, < 3) 231 | sawyer (~> 0.9) 232 | pathutil (0.16.2) 233 | forwardable-extended (~> 2.6) 234 | public_suffix (5.0.4) 235 | racc (1.7.3) 236 | rb-fsevent (0.11.2) 237 | rb-inotify (0.10.1) 238 | ffi (~> 1.0) 239 | rexml (3.2.6) 240 | rouge (3.30.0) 241 | rubyzip (2.3.2) 242 | safe_yaml (1.0.5) 243 | sass (3.7.4) 244 | sass-listen (~> 4.0.0) 245 | sass-listen (4.0.0) 246 | rb-fsevent (~> 0.9, >= 0.9.4) 247 | rb-inotify (~> 0.9, >= 0.9.7) 248 | sawyer (0.9.2) 249 | addressable (>= 2.3.5) 250 | faraday (>= 0.17.3, < 3) 251 | simpleidn (0.2.1) 252 | unf (~> 0.1.4) 253 | terminal-table (1.8.0) 254 | unicode-display_width (~> 1.1, >= 1.1.1) 255 | typhoeus (1.4.1) 256 | ethon (>= 0.9.0) 257 | tzinfo (2.0.6) 258 | concurrent-ruby (~> 1.0) 259 | unf (0.1.4) 260 | unf_ext 261 | unf_ext (0.0.9.1) 262 | unicode-display_width (1.8.0) 263 | uri (0.13.0) 264 | webrick (1.8.1) 265 | 266 | PLATFORMS 267 | ruby 268 | 269 | DEPENDENCIES 270 | github-pages 271 | webrick (~> 1.7) 272 | 273 | BUNDLED WITH 274 | 2.3.26 275 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # z/OSMF One Stop Hub 2 | Wlecome to z/OSMF One Stop Hub: https://ibm.github.io/zOSMF/ 3 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | title: z/OSMF One Stop Hub 2 | description: z/OSMF One Stop Hub contains a consolidated set of links to the information and publications for z/OSMF. 3 | keywords: z, zos, zosmf, mainframe 4 | theme: jekyll-theme-slate 5 | auto_ids: true 6 | repository: ibm/ibm.github.io 7 | 8 | # Constants 9 | title_zosmf: IBM z/OS Management Facility 10 | title_one_stop_hub: ONE STOP HUB 11 | 12 | # Titles and URLs for resources 13 | url_zosmf_knowledge_center: https://www.ibm.com/docs/en/zos/3.1.0?topic=zos-management-facility 14 | url_zosmf_marketplace: https://www.ibm.com/us-en/marketplace/zos-management-facility 15 | url_zosmf_core_trial: https://early-access.ibm.com/software/support/trial/cst/welcomepage.wss?siteId=938&tabId=2220&w=1 16 | url_zosmf_plugins_trial: https://early-access.ibm.com/software/support/trial/cst/welcomepage.wss?siteId=1571&tabId=4294&w=1 17 | url_zosmf_configuration_trial: https://early-access.ibm.com/software/support/trial/cst/welcomepage.wss?siteId=1755&tabId=4828&w=1 18 | url_zosmf_sample_code: https://github.com/IBM/IBM-Z-zOS/tree/master/zOSMF 19 | url_zosmf_configuration_guide: https://www.ibm.com/docs/en/zos/3.1.0?topic=facility-zos-management-configuration-guide 20 | url_zosmf_programming_guide: https://www.ibm.com/docs/en/zos/3.1.0?topic=facility-zos-management-programming-guide 21 | url_zosmf_redbook: http://www.redbooks.ibm.com/redbooks/pdfs/sg247851.pdf 22 | url_zosmf_apars: https://www.ibm.com/support/pages/ibm-zos-management-facility-zosmf 23 | url_zosmf_community: https://community.ibm.com/community/user/ibmz-and-linuxone/groups/topic-home?CommunityKey=1ca674e5-aada-4194-a16e-059cafe7b807 24 | url_zosmf_slack_channel: https://app.slack.com/client/T1BAJVCTY/CGLJM7W4W 25 | url_zosmf_zorow: https://www.openmainframeproject.org/projects/zorow 26 | url_zosmf_cpm_content_solution: https://www.ibm.com/support/z-content-solutions/cloud-provisioning 27 | url_zosmf_cpm_knowledge_center: https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zos.v2r4.izsc300/abstract.htm 28 | url_zosmf_cpm_trial: https://www.ibm.com/account/reg/signup?formid=urx-19504 29 | url_share_fort_worth: https://events.share.org/Winter2020/Public/SessionDetails.aspx?FromPage=Sessions.aspx&SessionID=10288&SessionDateID=57 30 | url_zos_v2r4_announcement: https://www-01.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/0/877/ENUSZP19-0410/index.html&request_locale=en 31 | url_zosmf_ansible_galaxy: https://galaxy.ansible.com/ibm/ibm_zosmf 32 | url_cics_content_solution: https://www.ibm.com/support/z-content-solutions/serverpac-install-zosmf/ 33 | url_zosmf_dataset_api_tuning_guide: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/hong-liang-zhao1/2020/10/13/tune-zosmf-rest-service 34 | url_cpm_enhancement: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/hiren-shah1/2021/01/19/whats-new-in-ibm-cloud-prov-mgmt-10-12-20 35 | url_zosmf_desktop_ui: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/xiao-zhen-zhu1/2021/04/07/ten-tips-you-may-not-know-about-zosmf-desktop-ui?CommunityKey=e7b7d299-8509-4572-8cf1-c1112684644f 36 | url_zowe_cli: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/na-tian1/2021/04/08/zosmf-performance-measurement-reference 37 | url_zosmf_value_proposition: https://github.com/IBM/IBM-Z-zOS/blob/main/zOSMF/docs/zOSMF%20Value%20Proposition.pdf 38 | url_zosmf_community_guild: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/rolando-perez/2021/11/03/zosmf-guild 39 | url_zosmf_channel: https://mediacenter.ibm.com/channel/z_OS+Management+Facility/33945322 40 | url_zosmf_ansible_collection: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/rolando-perez/2022/03/02/zosmf-ansible-collection-1-1-updates 41 | url_zosmf_ansible_collection_v12: https://galaxy.ansible.com/ibm/ibm_zosmf 42 | url_zosmf_guild_session: https://community.ibm.com/community/user/ibmz-and-linuxone/groups/community-home/librarydocuments/viewdocument?DocumentKey=ab8d7fc6-f8c8-46eb-9b4f-0189fb1f9d5a&Step=1&CommunityKey=1ca674e5-aada-4194-a16e-059cafe7b807&ReturnUrl=%2fcommunity%2fuser%2fibmz-and-linuxone%2fgroups%2ftopic-home%2flibrary%3fCommunityKey%3d1ca674e5-aada-4194-a16e-059cafe7b807&Action=new 43 | url_zosmf_what_users_said: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/fiona-king1/2024/04/08/zosmf-client-experiences?communityKey=200b84ba-972f-4f79-8148-21a723194f7f 44 | 45 | # Titles and URLs for blogs 46 | url_leveraging_zosmf_ansible: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/travis-biro1/2021/05/10/announce-certified-ibm-zosmf-ansible-automation?utm_medium=OSocial&utm_source=Twitter&utm_content=000001AF&utm_term=10012355&utm_id=Twitter-IBM-zOSMF-Ansible-Automation-2021-10-05&social_post=4805581678&linkId=118356083 47 | url_tailor_zosmf_server: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/zhi-li1/2020/08/10/tailor-your-zosmf-server-for-better-performance-in 48 | url_zosmf_startup_improvement: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/jing-hua-jiang1/2020/10/30/make-your-zosmf-server-starts-significantly-faster 49 | url_zosmf_client_certificate: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/yan-hui-wang1/2020/09/21/how-to-access-zosmf-with-client-certificate 50 | 51 | # Titles and URLs for user references 52 | title_blog_icbc: z/OSMF helps to build a truly service-oriented host system operation and maintenance platform 53 | url_blog_icbc: https://www.ibm.com/case-studies/industrial-and-commercial-bank-of-china-systems-software-mainframe-z 54 | customer_icbc: ICBC 55 | 56 | title_blog_vicom_infinity: The latest customer news about using z/OSMF REST APIs 57 | url_blog_vicom_infinity: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/andrii-vasylchenko1/2018/12/25/the-latest-customer-news-about-using-zosmf-rest-ap 58 | customer_vicom_infinity: Vicom Infinity 59 | 60 | title_blog_cmb: z/OSMF makes IBM Mainframe more open and modern 61 | url_blog_cmb: https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/andrii-vasylchenko1/2019/02/20/cmb-zosmf-makes-ibm-mainframe-more-open-and-modern 62 | customer_cmb: CMB 63 | 64 | # Titles and URLs for tutorial videos 65 | title_video_zosmf_overview: z/OSMF Overview 66 | url_video_zosmf_overview: https://community.ibm.com/community/user/ibmz-and-linuxone/viewdocument/zosmf-guild-session-1-recording?CommunityKey=1ca674e5-aada-4194-a16e-059cafe7b807&tab=librarydocuments 67 | 68 | title_video_zosmf_dataset_ussfile: Desktop Dataset and USS File Search 69 | url_video_zosmf_dataset_ussfile: https://mediacenter.ibm.com/media/t/1_qmzvt1qu 70 | img_video_zosmf_dataset_ussfile: assets/img/dataset_search.png 71 | 72 | title_video_zosmf_import_manager: Import Manager 73 | url_video_zosmf_import_manager: https://mediacenter.ibm.com/media/z+OSMF+Video+Import+Manager/1_jxi6dusd/101043781 74 | img_video_zosmf_import_manager: assets/img/import_manager.png 75 | 76 | title_video_zosmf_workflows: Workflows 77 | url_video_zosmf_workflows: https://mediacenter.ibm.com/media/z+OSMF+Workflows+Tutorial+-+Discover+z+OS+Features+%26+Manipulate+Data+Set/1_x4v2n1bq/101043781 78 | img_video_zosmf_workflows: assets/img/workflows.png 79 | 80 | title_video_zosmf_capacity_provisioning: Capacity Provisioning 81 | url_video_zosmf_capacity_provisioning: https://mediacenter.ibm.com/media/z+OSMF+Capacity+Provisioning+Tutorial/1_fudijgmt/101043781 82 | img_video_zosmf_capacity_provisioning: assets/img/capacity_provisioning.png 83 | 84 | title_video_zosmf_software_services: Software Services 85 | url_video_zosmf_software_services: https://mediacenter.ibm.com/channel/IBM+Z+Mainframe+Servers+and+Software/101043781 86 | img_video_zosmf_software_services: assets/img/software_services.png 87 | 88 | title_video_zosmf_zos_operator_consoles: z/OS Operator Consoles 89 | url_video_zosmf_zos_operator_consoles: https://mediacenter.ibm.com/media/z+OSMF+Operator+Console+Tutorial/1_5qcip6d3/101043781 90 | img_video_zosmf_zos_operator_consoles: assets/img/zos_operator_consoles.png 91 | 92 | title_video_zosmf_workload_management: Workload Management 93 | url_video_zosmf_workload_management: https://mediacenter.ibm.com/media/z+OSMF+WLM+Tutorial/1_owwa9j55 94 | img_video_zosmf_workload_management: assets/img/workload_management.png 95 | 96 | title_video_zosmf_incident_log: Incident Log 97 | url_video_zosmf_incident_log: https://mediacenter.ibm.com/media/z+OSMF+Incident+Log+Tutorial+-+Collect+diagnostic+data+and+send+to+IBM/1_huo1fejj 98 | img_video_zosmf_incident_log: assets/img/incident_log.png 99 | 100 | title_video_zosmf_sysplex_management: Sysplex Management 101 | url_video_zosmf_sysplex_management: https://mediacenter.ibm.com/media/Sysplex+Management+Overview/1_g5snla1t 102 | img_video_zosmf_sysplex_management: assets/img/sysplex_management.png 103 | 104 | title_video_zosmf_security_configuration_assistant: Security Configuration Assistant 105 | url_video_zosmf_security_configuration_assistant: https://mediacenter.ibm.com/media/1_vi437nry 106 | img_video_zosmf_security_configuration_assistant: assets/img/security_configuration_assistant.png 107 | 108 | title_video_zosmf_network_configuration_assistant: Network Configuration Assistant 109 | url_video_zosmf_network_configuration_assistant: http://ibm.biz/NCATCPIPcourse 110 | img_video_zosmf_network_configuration_assistant: assets/img/configuration_assistant.png 111 | 112 | title_video_zosmf_zert_network_analyzer: IBM zERT Network Analyzer 113 | url_video_zosmf_zert_network_analyzer: https://commserver-ens.github.io/zNA_interactive_demo/ 114 | img_video_zosmf_zert_network_analyzer: assets/img/zert_network_analyzer.png 115 | 116 | title_video_zosmf_rest_api_tso: TSO/E Address Space Services 117 | url_video_zosmf_rest_api_tso: https://mediacenter.ibm.com/media/TSO+API/1_9lloubj0 118 | img_video_zosmf_rest_api_tso: assets/img/rest_api.png 119 | 120 | title_video_zosmf_rest_api_dataset: Dataset REST Services 121 | url_video_zosmf_rest_api_dataset: https://mediacenter.ibm.com/media/t/1_kz4w4s1m 122 | img_video_zosmf_rest_api_dataset: assets/img/rest_api.png 123 | 124 | title_video_zosmf_ansible_collection: z/OSMF Ansible Collection 125 | url_video_zosmf_ansible_collection: https://mediacenter.ibm.com/playlist/dedicated/33945322/1_wy690s0x/1_jzltgsva 126 | img_video_zosmf_ansible_collection: assets/img/zosmf_ansible.png 127 | 128 | title_video_zosmf_management_services_catalog: z/OS Management Services Catalog 129 | url_video_zosmf_management_services_catalog: https://mediacenter.ibm.com/media/Lifecycle+of+a+service+%7C+z+OS+Management+Service+Catalog+/1_9vfboe5c 130 | img_video_zosmf_management_services_catalog: assets/img/management_services_catalog.png 131 | 132 | title_badge_zosmf_experienced: Interskill – Mainframe Specialist - z/OS Management Facility - Experienced 133 | url_badge_zosmf_experienced: https://www.credly.com/badges/a91e7c43-af7e-4b01-96f7-c085b31a8c6d 134 | img_badge_zosmf_experienced: assets/img/badge_zosmf_experienced.png 135 | 136 | title_badge_zert_config_nca: zERT Policy Enforcement Configuration with NCA 137 | url_badge_zert_config_nca: https://www.credly.com/org/ibm/badge/zert-policy-enforcement-configuration-with-nca 138 | img_badge_zert_config_nca: assets/img/badge_zert_config_nca.png 139 | 140 | title_badge_tcpip_config_nca: z/OS TCP/IP Configuration with Network Configuration Assistant 141 | url_badge_tcpip_config_nca: https://learn.ibm.com/course/view.php?id=5572 142 | img_badge_tcpip_config_nca: assets/img/badge_tcpip_config_nca.png 143 | 144 | title_badge_installation_using_zosmf: z/OS Installation Using z/OSMF 145 | url_badge_installation_using_zosmf: https://www.credly.com/org/ibm/badge/z-os-installation-using-z-osmf 146 | img_badge_installation_using_zosmf: assets/img/badge_installation_using_zosmf.png 147 | 148 | url_video_zosmf_validate_dfsms_security: https://mediacenter.ibm.com/media/Use+z+OSMF+to+validate+security+of+DFSMS/1_17jzrqtg/101043781 149 | 150 | url_video_zosmf_ansible_workflow: https://mediacenter.ibm.com/playlist/dedicated/33945322/1_wy690s0x/1_jzltgsva 151 | 152 | plugins: 153 | # Redirect plugin 154 | - jekyll-redirect-from 155 | 156 | # Exclude from processing 157 | exclude: 158 | - dco_signoffs 159 | - .gitignore 160 | -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 |Check out what users said about z/OSMF 3.1 features.
9 |z/OSMF enhancements in 1H 2024 (Click for details):
10 | 19 |Check out What’s NEW for z/OSMF 3.1 (Sep 2023).
20 | Show previous news... 21 | 159 |IBM z/OS Management Facility (z/OSMF) provides a framework for managing various aspects of a z/OS system through a task-oriented, web browser interface. By streamlining some traditional tasks and automating others, z/OSMF can help to simplify some areas of system management and reduce the level of expertise that is needed for managing a system.
166 |The IBM Z software trials program provides a no-charge trial for z/OSMF that does not require installation:
183 | 184 | 185 | 186 |The IBM-Z-zOS GitHub repository provides demonstrations of z/OSMF functions that you can download:
187 | 188 |IBM provides a series of tutorial videos and online courses to help you learn more about specific z/OSMF tasks. For all z/OSMF videos, please refer to the z/OSMF channel of IBM MediaCenter.
189 |{{ site.title_video_zosmf_security_configuration_assistant }}
229 |{{ site.title_video_zosmf_network_configuration_assistant }}
233 |IBM provides some expert documentation to help you learn more about z/OSMF:
262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 |The IBM Z and LinuxONE Community provides business and technical experts around the world the ability to exchange ideas, develop expertise, and connect through shared interests:
293 | 294 | 295 | 296 |The following cases illustrate how customers benefit from z/OSMF:
303 |Start your free online learning and get the following z/OSMF badges:
327 |The zosmf-adoption channel on Slack is provided for open discussion about configuration, adoption, marketing, and events for the z/OSMF product.
352 | 353 | 371 |