Chore: formatting and add missing code blocks in IFS Deployment Steps Guide

master
OB Hettiarachchi 2 months ago
parent c1b0d0b7c8
commit 4334cc7d6d

@ -27,6 +27,8 @@ This guide details the steps for installing a new delivery package in IFS, cover
* Run the following commands to configure `kube`: * Run the following commands to configure `kube`:
```bash ```bash
.\main.ps1 -resource 'GETKUBECONFIG' .\main.ps1 -resource 'GETKUBECONFIG'
```
```bash
copy .\config\kube\config $HOME\.kube\ copy .\config\kube\config $HOME\.kube\
``` ```
8. **Verify Namespace and Pods:** 8. **Verify Namespace and Pods:**
@ -60,7 +62,9 @@ This guide details the steps for installing a new delivery package in IFS, cover
* Set the Oracle environment ID: * Set the Oracle environment ID:
```bash ```bash
. oraenv . oraenv
```
# OR # OR
```bash
set oracle_sid=<SID> set oracle_sid=<SID>
``` ```
12. **Verify Instance and PDB Status:** 12. **Verify Instance and PDB Status:**
@ -77,6 +81,8 @@ This guide details the steps for installing a new delivery package in IFS, cover
* Check the recovery file destination and size parameters: * Check the recovery file destination and size parameters:
```sql ```sql
show parameter db_recovery_file_dest_size show parameter db_recovery_file_dest_size
```
```sql
show parameter db_recovery_file_dest show parameter db_recovery_file_dest
``` ```
15. **Create Temporary Directory:** 15. **Create Temporary Directory:**
@ -88,14 +94,22 @@ This guide details the steps for installing a new delivery package in IFS, cover
* If the database is in `no archive log` mode, configure the destination: * If the database is in `no archive log` mode, configure the destination:
```sql ```sql
db_recovery_file_dest_size=100G db_recovery_file_dest_size=100G
```
```sql
db_recovery_file_dest=/u02/TEST db_recovery_file_dest=/u02/TEST
``` ```
17. **Set Database to Archive Log Mode:** 17. **Set Database to Archive Log Mode:**
* **Change DB to Archivelog:** * **Change DB to Archivelog:**
```sql ```sql
shutdown immediate shutdown immediate
```
```sql
startup mount startup mount
```
```sql
alter database archivelog; alter database archivelog;
```
```sql
alter database open; alter database open;
``` ```
* *(The "No Archivelog" commands are provided here for later reference.)* * *(The "No Archivelog" commands are provided here for later reference.)*

Loading…
Cancel
Save