An open API service indexing awesome lists of open source software.

https://github.com/oracle-quickstart/oci-arch-websphere-on-oci

Terraform to deploy IBM WebSphere on OCI.
https://github.com/oracle-quickstart/oci-arch-websphere-on-oci

oracle-cloud-infrastructure partner-led websphere

Last synced: 8 months ago
JSON representation

Terraform to deploy IBM WebSphere on OCI.

Awesome Lists containing this project

README

          

# oci-arch-websphere-on-oci

WebSphere Application Server is part of IBM's WebSphere Suite. It hosts Java-based web applications and is built using open standards.

## Terraform Provider for Oracle Cloud Infrastructure
The OCI Terraform Provider is now available for automatic download through the Terraform Provider Registry.
For more information on how to get started view the [documentation](https://www.terraform.io/docs/providers/oci/index.html)
and [setup guide](https://www.terraform.io/docs/providers/oci/guides/version-3-upgrade.html).

* [Documentation](https://www.terraform.io/docs/providers/oci/index.html)
* [OCI forums](https://cloudcustomerconnect.oracle.com/resources/9c8fa8f96f/summary)
* [Github issues](https://github.com/terraform-providers/terraform-provider-oci/issues)
* [Troubleshooting](https://www.terraform.io/docs/providers/oci/guides/guides/troubleshooting.html)

## Clone the Module
Now, you'll want a local copy of this repo. You can make that with the commands:

git clone https://github.com/oracle-quickstart/oci-arch-websphere-on-oci.git
cd oci-arch-websphere-on-oci
ls

## Prerequisites
First off, you'll need to do some pre-deploy setup. That's all detailed [here](https://github.com/cloud-partners/oci-prerequisites).

Secondly, create a `terraform.tfvars` file and populate with the following information:

```
# Authentication
tenancy_ocid = ""
user_ocid = ""
fingerprint = ""
private_key_path = ""

# SSH Keys
ssh_public_key = ""

# Region
region = ""

# Compartment
compartment_ocid = ""

````

Deploy:

terraform init
terraform plan
terraform apply

The current version of the code here only provision the required infrastructure and does not install WebSphere.

## Destroy the Deployment
When you no longer need the deployment, you can run this command to destroy it:

terraform destroy

## WebSphere Application Server Architecture

![](./images/websphere-oci-architecture.png)

## Reference Architecture

- [Deploy IBM WebSphere on Oracle Cloud Infrastructure](https://docs-uat.us.oracle.com/en/solutions/deploy-websphere-on-oci)