{"id":19332,"date":"2022-10-06T10:02:33","date_gmt":"2022-10-06T08:02:33","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=19332"},"modified":"2025-01-24T10:44:25","modified_gmt":"2025-01-24T09:44:25","slug":"a-step-by-step-guide-to-install-and-configure-oci-client","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/","title":{"rendered":"A step by step guide to install and configure OCI client"},"content":{"rendered":"\n<p>by Alexandre Nestor<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-introduction\">Introduction<\/h3>\n\n\n\n<p>OCI stands for Oracle Cloud Infrastructure and the command line client (CLI) keep the same name: <em>oci<\/em><\/p>\n\n\n\n<p>The aim of this guide is to give a practical step by step quick flow, that I used on all new created vm,  in order to have the oci cli working in no time. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-installation\">Installation<\/h3>\n\n\n\n<p>The install directory is <code>$HOME\/oracle_cli<\/code> with no optional packages.  I added comments in the screenshot trace:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n# Download and install the cli \nubuntu@demoubuntu:~$ bash -c &quot;$(curl -L https:\/\/raw.githubusercontent.com\/oracle\/oci-cli\/master\/scripts\/install\/install.sh)&quot;\n  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current\n                                 Dload  Upload   Total   Spent    Left  Speed\n100 16926  100 16926    0     0  64101      0 --:--:-- --:--:-- --:--:-- 64357\n\n    ******************************************************************************\n    You have started the OCI CLI Installer in interactive mode. If you do not wish\n    to run this in interactive mode, please include the --accept-all-defaults option.\n\n.....\n\n# Give the lib install dir \n===&gt; In what directory would you like to place the install? (leave blank to use &#039;\/home\/ubuntu\/lib\/oracle-cli&#039;): \/home\/ubuntu\/oracle_cli\/lib\n-- Creating directory &#039;\/home\/ubuntu\/oracle_cli\/lib&#039;.\n-- We will install at &#039;\/home\/ubuntu\/oracle_cli\/lib&#039;.\n\n# Give the bin install dir\n===&gt; In what directory would you like to place the &#039;oci&#039; executable? (leave blank to use &#039;\/home\/ubuntu\/bin&#039;): \/home\/ubuntu\/oracle_cli\/bin\n-- Creating directory &#039;\/home\/ubuntu\/oracle_cli\/bin&#039;.\n-- The executable will be in &#039;\/home\/ubuntu\/oracle_cli\/bin&#039;.\n\n===&gt; In what directory would you like to place the OCI scripts? (leave blank to use &#039;\/home\/ubuntu\/bin\/oci-cli-scripts&#039;): \/home\/ubuntu\/oracle_cli\/oci-cli-scripts\n-- Creating directory &#039;\/home\/ubuntu\/oracle_cli\/oci-cli-scripts&#039;.\n-- The scripts will be in &#039;\/home\/ubuntu\/oracle_cli\/oci-cli-scripts&#039;.\n\n# Give optional packages install dir (db is a current package to install)\n===&gt; Currently supported optional packages are: &#x5B;&#039;db (will install cx_Oracle)&#039;]\nWhat optional CLI packages would you like to be installed (comma separated names; press enter if you don&#039;t need any optional packages)?:\n-- The optional packages installed will be &#039;&#039;.\n....\n\n# Restart the shell \nubuntu@demoubuntu:~$ exec -l $SHELL\n\n# Test that all is working \nubuntu@demoubuntu:~$ oci -version\n3.18.1\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-create-the-access-keys\">Create the access keys<\/h3>\n\n\n\n<p>These keys can be created by using <code>ssh-keygen <\/code>or the fresh installe <code>oci<\/code> client. Let&#8217;s use the <code>oci<\/code> client.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n# The command will create the $HOME\/.oci directory\nubuntu@demoubuntu:~$ oci setup keys\n\n# The content of $HOME\/.oci directory\nubuntu@demoubuntu:~$ ls .oci\noci_api_key.pem  oci_api_key_public.pem\n\n<\/pre><\/div>\n\n\n<h3 class=\"wp-block-heading\" id=\"h-create-the-api-key-from-the-user-page\">Create the API Key from the user page <\/h3>\n\n\n\n<p>Grab generated public key <\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\nubuntu@demoubuntu:~$ cat .oci\/oci_api_key_public.pem\n-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArOGQ1QVmNgHMhcTS+idM\n7ASM\/waVyvxZpKb4Qu57gZ3EXBKRA97R7Za56IZuqyHsG5Q5hRzfnyZdCbPQkB\/K\nrhme9DzK15lChA3u4a9m\/ZogYjZQrVL3drjJKbtm2K\/hLd4jlAamsp3xgxeLwKeJ\nxe0PnHUXupnRIzNvw5H7y4sk7oVQG4r+7P2rHhIOw7f89xFYo8WcO4S5p10q\/ojR\ncrfYKin25eS5G9koKdje7RBQgvaplVv2dscOvbEqRCDHqrrKVz03q7BlcsRydOVh\neoNMluZh26SIHPxVjXhDmzzjVqrg\/8ly1wClO7q3TJnpmlxUBQPcJesa0czgmJV1\nhQIDAQAB\n-----END PUBLIC KEY-----\n\n<\/pre><\/div>\n\n\n<p>and copy it into the &#8220;<strong>Add API Key<\/strong>&#8221; window from &#8220;<strong>Identity &gt; Users &gt; User Details<\/strong>&#8221; page of your user.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"669\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2-1024x669.png\" alt=\"\" class=\"wp-image-19399\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2-1024x669.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2-300x196.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2-768x502.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2-1536x1003.png 1536w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2-2048x1338.png 2048w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Final step, copy the generated config file from the &#8220;<strong>Configuration File Preview<\/strong>&#8221; window into the <code>$HOME\/.oci\/config <\/code>file. <\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\nubuntu@demoubuntu:~$ cat .oci\/config\n&#x5B;DEFAULT]\nuser=ocid1.user.oc1..********************\nfingerprint=d4:*****************\ntenancy=ocid1.tenancy.oc1..*******************\nregion=eu-zurich-1\nkey_file=\/home\/ubuntu\/.oci\/oci_api_key.pem\n\n<\/pre><\/div>\n\n\n<p>At this moment the environnement is configured and <code>oci<\/code> commands can be executed (example bellow on dns parameters):<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"679\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_11-14-00-1024x679.png\" alt=\"\" class=\"wp-image-19401\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_11-14-00-1024x679.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_11-14-00-300x199.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_11-14-00-768x509.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_11-14-00.png 1402w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-ressources\">Ressources:<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Oracle Documentation Quickstart: <a href=\"https:\/\/docs.oracle.com\/en-us\/iaas\/Content\/API\/Concepts\/cliconcepts.htm\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/docs.oracle.com\/en-us\/iaas\/Content\/API\/Concepts\/cliconcepts.htm<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>by Alexandre Nestor Introduction OCI stands for Oracle Cloud Infrastructure and the command line client (CLI) keep the same name: oci The aim of this guide is to give a practical step by step quick flow, that I used on all new created vm, in order to have the oci cli working in no time. [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[955,59],"tags":[2715,2712],"type_dbi":[],"class_list":["post-19332","post","type-post","status-publish","format-standard","hentry","category-cloud","category-oracle","tag-cloud-2","tag-oracle-oci"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>A step by step guide to install and configure OCI client - dbi Blog<\/title>\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\/a-step-by-step-guide-to-install-and-configure-oci-client\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A step by step guide to install and configure OCI client\" \/>\n<meta property=\"og:description\" content=\"by Alexandre Nestor Introduction OCI stands for Oracle Cloud Infrastructure and the command line client (CLI) keep the same name: oci The aim of this guide is to give a practical step by step quick flow, that I used on all new created vm, in order to have the oci cli working in no time. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-06T08:02:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-24T09:44:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2664\" \/>\n\t<meta property=\"og:image:height\" content=\"1740\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Oracle 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=\"Oracle 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\/a-step-by-step-guide-to-install-and-configure-oci-client\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"A step by step guide to install and configure OCI client\",\"datePublished\":\"2022-10-06T08:02:33+00:00\",\"dateModified\":\"2025-01-24T09:44:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/\"},\"wordCount\":183,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2-1024x669.png\",\"keywords\":[\"Cloud\",\"Oracle OCI\"],\"articleSection\":[\"Cloud\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/\",\"name\":\"A step by step guide to install and configure OCI client - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2-1024x669.png\",\"datePublished\":\"2022-10-06T08:02:33+00:00\",\"dateModified\":\"2025-01-24T09:44:25+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2.png\",\"width\":2664,\"height\":1740},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A step by step guide to install and configure OCI client\"}]},{\"@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\/66ab87129f2d357f09971bc7936a77ee\",\"name\":\"Oracle Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"caption\":\"Oracle Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"A step by step guide to install and configure OCI client - dbi Blog","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\/a-step-by-step-guide-to-install-and-configure-oci-client\/","og_locale":"en_US","og_type":"article","og_title":"A step by step guide to install and configure OCI client","og_description":"by Alexandre Nestor Introduction OCI stands for Oracle Cloud Infrastructure and the command line client (CLI) keep the same name: oci The aim of this guide is to give a practical step by step quick flow, that I used on all new created vm, in order to have the oci cli working in no time. [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/","og_site_name":"dbi Blog","article_published_time":"2022-10-06T08:02:33+00:00","article_modified_time":"2025-01-24T09:44:25+00:00","og_image":[{"width":2664,"height":1740,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2.png","type":"image\/png"}],"author":"Oracle Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oracle Team","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"A step by step guide to install and configure OCI client","datePublished":"2022-10-06T08:02:33+00:00","dateModified":"2025-01-24T09:44:25+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/"},"wordCount":183,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2-1024x669.png","keywords":["Cloud","Oracle OCI"],"articleSection":["Cloud","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/","url":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/","name":"A step by step guide to install and configure OCI client - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2-1024x669.png","datePublished":"2022-10-06T08:02:33+00:00","dateModified":"2025-01-24T09:44:25+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/10\/2022-10-05_10-27-28-2.png","width":2664,"height":1740},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/a-step-by-step-guide-to-install-and-configure-oci-client\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"A step by step guide to install and configure OCI client"}]},{"@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\/66ab87129f2d357f09971bc7936a77ee","name":"Oracle Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","caption":"Oracle Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/19332","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\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=19332"}],"version-history":[{"count":16,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/19332\/revisions"}],"predecessor-version":[{"id":36881,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/19332\/revisions\/36881"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=19332"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=19332"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=19332"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=19332"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}