{"id":20628,"date":"2022-11-24T17:11:53","date_gmt":"2022-11-24T16:11:53","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=20628"},"modified":"2024-09-10T17:25:29","modified_gmt":"2024-09-10T15:25:29","slug":"ansible-deployment-code-for-oracle-fusion-middleware-infrastructure","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/","title":{"rendered":"Ansible deployment code for Oracle Fusion Middleware Infrastructure"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<p>During the <a href=\"https:\/\/www.dbi-services.com\/products\/yak\/\" target=\"_blank\" rel=\"noreferrer noopener\">YaK<\/a> weblogic_domain component development phase, I added the Oracle fusion middleware forms &amp; Reports and the Oracle fusion middleware infrastructure for Application development Framework (ADF) deployments to the weblogic_domain component. I encountered an issue that the  WebLogic domain was created but it was missing the Metadata Service repository (MDS) connection and thus deploying ADF applications was failing. Even after configuring the WebLogic domain with Java Required Files (JRF), as described in the blog <a href=\"https:\/\/blogs.oracle.com\/emeapartnerweblogic\/post\/using-ansible-to-install-weblogic-12c-r2-1221-and-fusion-middleware-infastructure-on-oracle-linux-71-by-christos-vezalis\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Using Ansible to install WebLogic 12c R2 (12.2.1) and Fusion Middleware Infrastructure on Oracle Linux 7.1&#8221;<\/a> , the MDS connection was still not configured. <\/p>\n\n\n\n<p>Doing some researches I came to the information that the WebLogic domain templates below are not enough to configure fully such WebLogic Domain:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nwls_template=middleware_home + &#039;\/wls_server\/common\/templates\/wls\/wls.jar&#039;;\nem_template=middleware_home + &#039;\/em\/common\/templates\/wls\/oracle.em_wls_template.jar&#039;;\n\n<\/pre><\/div>\n\n\n<p>The Oracle WSM Policy Manager extension template is required too but needs to be applied properly as there is no automatic domain configuration like using the Forms &amp; Reports domain extension templates.<\/p>\n\n\n\n<p>I found the nice github <a href=\"https:\/\/github.com\/oracle\/docker-images\/tree\/e68d1f10fda6e893a01062e5b8af2b32606e3592\/OracleFMWInfrastructure#oracle-fusion-middleware-infrastructure-on-docker\">Oracle Fusion Middleware Infrastructure on Docker<\/a> project that gave me all information needed for my ansible project. The needed WebLogic Domain extension templates are the following:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n1:\n  name: &#039;Oracle JRF - 12.2.1.4&#039;\n  location: &#039;\/oracle_common\/common\/templates\/wls\/oracle.jrf_template.jar&#039;\n2:\n  name: &#039;Oracle JRF WS Async - 12.2.1.4&#039;\n  location: &#039;\/oracle_common\/common\/templates\/wls\/oracle.jrf.ws.async_template.jar&#039;\n3:\n  name: &#039;Oracle WSM Policy Manager - 12.2.1.4&#039;\n  location: &#039;\/oracle_common\/common\/templates\/wls\/oracle.wsmpm_template.jar&#039;\n4:\n  name: &#039;Oracle Enterprise Manager - 12.2.1.4&#039;\n  location: &#039;\/em\/common\/templates\/wls\/oracle.em_wls_template.jar&#039;\n<\/pre><\/div>\n\n\n<p>Additionally to the standard WebLogic wls template to create the basic WebLogic Domain<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n\/wlserver\/common\/templates\/wls\/wls.jar\n<\/pre><\/div>\n\n\n<p>Note that all those templates are located based on the Oracle Home directory.  <\/p>\n\n\n\n<p>But once the right templates are used, the FMW deployments and services needs to be applied to the WebLogic Servers. If not, the following error is raised:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nCFGFWK-64254: Error occurred in &quot;Artifacts Generation&quot; phase execution\nEncountered error: CFGFWK-64038: The app-svc-name &quot;wsm-pm&quot; must have target.\nCFGFWK-64038: The app-svc-name &quot;wsm-pm&quot; must have target.\nCFGFWK-64038: Provide a valid target During ConfigMapping\n<\/pre><\/div>\n\n\n<p>No error is reported for the JRF because the enterprise Manager template automatically configures JRF on the Administration Server but the managed servers will miss JRF. <br>The application of the FMW deployments and services to the WebLogic Managed Servers is done by using the <a href=\"https:\/\/docs.oracle.com\/en\/middleware\/fusion-middleware\/weblogic-server\/12.2.1.4\/wlstc\/reference.html#GUID-19361DDA-C51A-4752-93E9-ECDE9570F6AC\">setServerGroups<\/a> WLST command. The two JRF-MAN-SVR and WSMPM-MAN-SVR server groups ensure that the Oracle JRF and Oracle Web Services Manager (OWSM) services are targeted to the Managed Servers you are creating.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\ngroups=&#x5B; &quot;JRF-MAN-SVR&quot;, &quot;WSMPM-MAN-SVR&quot; ]\nsetServerGroups(server_name,groups)\n<\/pre><\/div>\n\n\n<p>The ansible role part to create the WebLogic Domain is using two templates. The first one is a shell script using the Repository Creation Utility (RCU) to create the repository and the second one is a python script to create the FMW WebLogic Domain. <\/p>\n\n\n\n<p>CreateRepo.j2 jinja template<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nSCRIPT=$(readlink -f $0)\nSCRIPT_PATH=$(dirname $SCRIPT)\n\nJAVA_HOME={{ pv_java_home }}\nexport JAVA_HOME\n\n{{ pv_mw_home }}\/oracle_common\/bin\/rcu \\\n  -silent \\\n  -createRepository \\\n  -databaseType ORACLE \\\n  -connectString {{ pv_weblogic_domain_details.dbserver_name }}:{{ pv_weblogic_domain_details.dbserver_port }}\/{{ pv_weblogic_domain_details.dbserver_service }} \\\n  -dbUser sys \\\n  -dbRole SYSDBA \\\n  -schemaPrefix {{ pv_weblogic_domain_details.repository_prefix }} \\\n  -useSamePasswordForAllSchemaUsers true \\\n  -component IAU \\\n  -component IAU_APPEND \\\n  -component IAU_VIEWER \\\n  -component OPSS \\\n  -component STB \\\n  -component WLS \\\n  -component MDS \\\n  -f &amp;lt; {{ pv_domain_config_location }}\/passwords.txt\n\n<\/pre><\/div>\n\n\n<p>CreateDomain.j2 jinja template (not the complete code but only the interesting parts after the basic domain was created). <\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; highlight: [6,7,55,59,70]; title: ; notranslate\" title=\"\">\n# Read the domain\nreadDomain(domainpath);\nprint &#039;&amp;gt;&amp;gt;&amp;gt;Domain readed.&#039;\n# Apply the FMW extensions templates\n{% if pv_fusion_template is defined %}\n{% for key,value in pv_fusion_template_list.items() %}\naddTemplate(&#039;{{ pv_mw_home }}\/{{ value.location }}&#039;)\n{% endfor %}\nsetOption(&#039;AppDir&#039;, applicationpath )\n{% endif %}\n# Create the machines\ntry:\n  for mm in MACHINES.split(&#039;|&#039;):\n    if mm :\n      # create the machine\n      m = mm.split(&#039;,&#039;)\n      createNewMachine(m&#x5B;0],m&#x5B;1],m&#x5B;2],m&#x5B;3],m&#x5B;4])\n\nexcept Exception, e:\n  print &quot;The machines creation failed, check reason&quot;,e\n  exit(exitcode=2)\n# Create the clusters and assigned managed servers\ntry:\n  for cluster in CLUSTERS.split(&#039;|&#039;):\n    if cluster :\n      found = 0\n      for cc in cluster.split(&#039;:&#039;):\n        if found == 0 :\n          clusterName = cc\n          createCluster(clusterName)\n          found = 1\n        else:\n          server = cc.split(&#039;,&#039;)\n          createManagedServer(server&#x5B;0],server&#x5B;1],server&#x5B;2],server&#x5B;3],server&#x5B;4])\n          assignManagedServerToCluster(server&#x5B;0],clusterName)\n\nexcept Exception, e:\n  print &quot;The clusters creation failed, check reason&quot;,e\n  exit(exitcode=2)\n# Create the standalone managed servers\ntry:\n  for server in SERVERS.split(&#039;|&#039;):\n    if server :\n      serverAttributes = server.split(&#039;,&#039;)\n      createManagedServer(serverAttributes&#x5B;0],serverAttributes&#x5B;1],serverAttributes&#x5B;2],serverAttributes&#x5B;3],serverAttributes&#x5B;4])\n\nexcept Exception, e:\n  print &quot;The servers creation failed, check reason&quot;,e\n  exit(exitcode=2)\n# Update the JDBC data sources described set the FMW templates\ntry:\n  configureJDBCDataSource(REPO_DATA_SOURCE_USER_PREFIX, REPO_DATA_SOURCE_URL, REPO_DATA_SOURCE_TEST, DSPassword)\n  print &#039;&amp;gt;&amp;gt;&amp;gt;JDBC updated.&#039;\n  # Place all Managed Servers in the Server Groups\n  groups=&#x5B; &quot;JRF-MAN-SVR&quot;, &quot;WSMPM-MAN-SVR&quot; ]\n  for server in SERVERS.split(&#039;|&#039;):\n    if server :\n      serverAttributes = server.split(&#039;,&#039;)\n      setServerGroups(serverAttributes&#x5B;0],groups)\n\n  for cluster in CLUSTERS.split(&#039;|&#039;):\n    if cluster :\n      found = 0\n      for cc in cluster.split(&#039;:&#039;):\n        if found == 0 :\n          clusterName = cc\n          found = 1\n        else:\n          server = cc.split(&#039;,&#039;)\n          setServerGroups(server&#x5B;0],groups)\n# Create Applications dedicated data sources\n{% if pv_weblogic_domain_details.create_JDBC_Connection is defined %}\n{% for key,value in pv_weblogic_domain_details.ds_connections.items() %}\ntry:\n  createJDBCDataSource( &quot;{{ value.ds_name }}&quot;, JDBC_REPO_DATA_SOURCE_URL, &quot;{{ value.ds_jndi_name }}&quot;, &quot;{{ value.ds_schema }}&quot;, &quot;{{ value.ds_target }}&quot;, JDBC_REPO_DATA_SOURCE_TEST, JDBC_DSPassword)\nexcept Exception, e:\n  print &quot;The JDBCDataSource {{ value.ds_name }} creation failed, check reason&quot;,e\n  exit(exitcode=2)\nupdateDomain()\n{% endfor %}\n{% endif %}\n\n<\/pre><\/div>\n\n\n<p>Now the extract of the ansible role to create the WebLogic Domain<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n- name: Execute create repository script\n  become: true\n  become_user: &#039;{{ pv_oracle_user }}&#039;\n  shell: &quot;{{ pv_domain_config_location }}\/create_repo.sh&quot;\n  when: pv_create_repo_schemas is defined and pv_create_repo_schemas and pv_adminFlag\n  register: rcu_results\n  failed_when: rcu_results.stdout | regex_search(&#039;ERROR&#039;) and not( rcu_results.stdout | regex_search(&#039;RCU-6016&#039;) )\n  #ignore_errors: true\n  tags:\n    - wls-domain-creation\n- name: Remove password response file for repository creation\n  become: true\n  become_user: &#039;{{ pv_oracle_user }}&#039;\n  file:\n    path: &quot;{{ pv_domain_config_location }}\/passwords.txt&quot;\n    state: absent\n  when: pv_create_repo_schemas is defined and pv_create_repo_schemas\n  tags:\n    - wls-domain-creation\n\n- name: Execute Create Domain Script\n  become: true\n  become_user: &#039;{{ pv_oracle_user }}&#039;\n  command: &quot;{{ pv_mw_home }}\/oracle_common\/common\/bin\/wlst.sh {{ pv_domain_config_location }}\/CreateDomain.py {{ pv_domain_name }}&quot;\n  environment:\n    WLS_ADMIN_USER: &#039;{{ pv_weblogic_domain_details.weblogic_admin }}&#039;\n    WLS_ADMIN_PASSWORD: &#039;{{ pv_weblogic_secrets.weblogic_admin_pass }}&#039;\n    WLS_NM_USER: &#039;{{ pv_weblogic_domain_details.nm_user }}&#039;\n    WLS_NM_PASSWORD: &#039;{{ pv_weblogic_secrets.nodemanager_password }}&#039;\n    DS_PASSWORD: &quot;{{ pv_weblogic_secrets.datasource_password | default(&#039;&#039;) }}&quot;\n    JDBC_DS_PASSWORD: &quot;{{ pv_weblogic_secrets.jdbc_datasource_password | default(&#039;&#039;) }}&quot;\n    WEBLOGIC_DOMAIN_DEF_DIR: &#039;{{ pv_domain_config_base }}&#039;\n    MW_CONFIG_HOME: &#039;{{ pv_config_base }}&#039;\n  args:\n    creates: &#039;{{ pv_domains_base }}\/{{ pv_domain_name }}\/startWebLogic.sh&#039;\n  when: pv_adminFlag\n  register: createdomain_output\n  tags:\n    - wls-domain-creation\n<\/pre><\/div>\n\n\n<p>Now with <a href=\"https:\/\/www.dbi-services.com\/products\/yak\/\" target=\"_blank\" rel=\"noreferrer noopener\">YaK<\/a> weblogic_domain component, we are able to deploy WebLogic domains clustered or not, Fusion Middleware Forms &amp; Reports, Fusion Middleware infrastructure for ADF applications to on-premises platforms, or on different platforms on the Cloud (AWS, Azure, OCI).  <a href=\"https:\/\/www.dbi-services.com\/products\/yak\/\" target=\"_blank\" rel=\"noreferrer noopener\">YaK<\/a> core takes care of the infrastructure and Yak WebLogic_domain component takes care of the WebLogic or Fusion Middleware applications servers.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>During the YaK weblogic_domain component development phase, I added the Oracle fusion middleware forms &amp; Reports and the Oracle fusion middleware infrastructure for Application development Framework (ADF) deployments to the weblogic_domain component. I encountered an issue that the WebLogic domain was created but it was missing the Metadata Service repository (MDS) connection and thus deploying [&hellip;]<\/p>\n","protected":false},"author":40,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1321,197,59,2748,2721],"tags":[949,2600,490],"type_dbi":[],"class_list":["post-20628","post","type-post","status-publish","format-standard","hentry","category-ansible","category-application-integration-middleware","category-oracle","category-weblogic","category-yak","tag-adf","tag-ansible-2","tag-oracle-fusion-middleware"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Ansible deployment code for Oracle Fusion Middleware Infrastructure - dbi Blog<\/title>\n<meta name=\"description\" content=\"This blogs describes how to deploy automatically a Fusion Middleware ADF environment using ansible code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ansible deployment code for Oracle Fusion Middleware Infrastructure\" \/>\n<meta property=\"og:description\" content=\"This blogs describes how to deploy automatically a Fusion Middleware ADF environment using ansible code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-24T16:11:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-10T15:25:29+00:00\" \/>\n<meta name=\"author\" content=\"Middleware Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Middleware Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\\\/\"},\"author\":{\"name\":\"Middleware Team\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/8d8563acfc6e604cce6507f45bac0ea1\"},\"headline\":\"Ansible deployment code for Oracle Fusion Middleware Infrastructure\",\"datePublished\":\"2022-11-24T16:11:53+00:00\",\"dateModified\":\"2024-09-10T15:25:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\\\/\"},\"wordCount\":461,\"commentCount\":0,\"keywords\":[\"ADF\",\"Ansible\",\"Oracle Fusion Middleware\"],\"articleSection\":[\"Ansible\",\"Application integration &amp; Middleware\",\"Oracle\",\"WebLogic\",\"YaK\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\\\/\",\"name\":\"Ansible deployment code for Oracle Fusion Middleware Infrastructure - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2022-11-24T16:11:53+00:00\",\"dateModified\":\"2024-09-10T15:25:29+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/8d8563acfc6e604cce6507f45bac0ea1\"},\"description\":\"This blogs describes how to deploy automatically a Fusion Middleware ADF environment using ansible code.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ansible deployment code for Oracle Fusion Middleware Infrastructure\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/8d8563acfc6e604cce6507f45bac0ea1\",\"name\":\"Middleware Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g\",\"caption\":\"Middleware Team\"},\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/middleware-team\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Ansible deployment code for Oracle Fusion Middleware Infrastructure - dbi Blog","description":"This blogs describes how to deploy automatically a Fusion Middleware ADF environment using ansible code.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/","og_locale":"en_US","og_type":"article","og_title":"Ansible deployment code for Oracle Fusion Middleware Infrastructure","og_description":"This blogs describes how to deploy automatically a Fusion Middleware ADF environment using ansible code.","og_url":"https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/","og_site_name":"dbi Blog","article_published_time":"2022-11-24T16:11:53+00:00","article_modified_time":"2024-09-10T15:25:29+00:00","author":"Middleware Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Middleware Team","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/"},"author":{"name":"Middleware Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"headline":"Ansible deployment code for Oracle Fusion Middleware Infrastructure","datePublished":"2022-11-24T16:11:53+00:00","dateModified":"2024-09-10T15:25:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/"},"wordCount":461,"commentCount":0,"keywords":["ADF","Ansible","Oracle Fusion Middleware"],"articleSection":["Ansible","Application integration &amp; Middleware","Oracle","WebLogic","YaK"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/","url":"https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/","name":"Ansible deployment code for Oracle Fusion Middleware Infrastructure - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2022-11-24T16:11:53+00:00","dateModified":"2024-09-10T15:25:29+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1"},"description":"This blogs describes how to deploy automatically a Fusion Middleware ADF environment using ansible code.","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/ansible-deployment-code-for-oracle-fusion-middleware-infrastructure\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Ansible deployment code for Oracle Fusion Middleware Infrastructure"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/8d8563acfc6e604cce6507f45bac0ea1","name":"Middleware Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ddcae7ba0f9d1a0e7ae707f0e689e4a9c95bb48ec49c8e6d9cc86d43f4121cb6?s=96&d=mm&r=g","caption":"Middleware Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/middleware-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/20628","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/40"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=20628"}],"version-history":[{"count":12,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/20628\/revisions"}],"predecessor-version":[{"id":34678,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/20628\/revisions\/34678"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=20628"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=20628"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=20628"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=20628"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}