Author: Jason Beattie
Oracle Cloud Infrastructure (OCI) CLI (Command Line Interface) is an essential tool for developers and administrators looking to interact with Oracle Cloud services via terminal commands. This tool simplifies managing cloud resources, automates tasks, and integrates with other development environments. Here, we’ll walk through the steps to set up OCI CLI on both Windows and macOS.
Overview of OCI CLI
OCI CLI is a powerful tool that allows you to access and control Oracle Cloud resources. Instead of using the OCI console interface, you can automate operations, manage resources, and customize interactions with OCI services. It’s essential for scripting, handling multiple accounts, and bulk actions.
Key Benefits of OCI CLI:
Automate cloud infrastructure tasks.
Integrate with automation tools like CI/CD pipelines.
Access cloud resources quickly and remotely.
2. Prerequisites
Before installation, ensure that your system meets the following requirements:
Python 3: OCI CLI is a Python-based tool. If Python isn’t installed, install it from the official Python website. Version 3.6 or later is recommended.
Oracle Cloud Account: You’ll need an OCI account with appropriate permissions.
Administrator Access: Some steps may require administrative privileges on your computer.
3. Installation Steps on Windows
Let’s break down the installation of OCI CLI on a Windows system.
Step 1: Install Python (if not already installed)
Download Python from python.org.
During installation, check the box “Add Python to PATH”.
After installation, verify by running python --version in Command Prompt.
Step 2: Download and Install OCI CLI
Open Command Prompt as an administrator.
Run the following installation command:
python -m pip install oci-cli
Once installed, verify by running:
oci --version
Installing OCI CLI on macOS
Step 1: Install Python (if needed)
Install Homebrew:
Install Homebrew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Install Python:
brew install python
Confirm by typing:
python3 --version
Step 2: Install OCI CLI
Open Terminal.
Run:
python3 -m pip install oci-cli
Verify installation with:
oci --version
Configuring OCI CLI
Run:
oci setup config
Enter the required details (User OCID, Tenancy OCID, Region, etc.), found in the OCI Console.
Testing the Installation Run:
oci iam compartment list
If everything’s set up correctly, this will return a list of compartments in your tenancy. With your setup complete, you’re ready to start managing Oracle Cloud resources right from your command line!
In Part 2, we’ll cover cloning boot volumes from one tenancy to another within the same region using OCI CLI.
Comments