How to install Oracle_11g using Docker

How to install Oracle_11g using Docker

Install Oracle_11g with Docker

1. Pull the oracle_11g image

docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 

insert image description here

2. Create an oracle11g container

docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g

3. Check whether the oracle11g container is created successfully

docker ps -a 

insert image description here

4. Start the oracle11g container

docker start oracle11g 

insert image description here

5. Enter the oracle11g container for configuration

docker exec -it oracle11g bash

6. Switch to the root user for configuration

su root

Password: helowin

insert image description here

7. Edit the profile file to configure the ORACLE environment variables

vi /etc/profile 

insert image description here

8. Finally, add the following 3 lines of configuration

export ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_2
export ORACLE_SID=helowin
export PATH=$ORACLE_HOME/bin:$PATH 

insert image description here

Save: :wq
Make the configuration take effect: source /etc/profile

9. Create a soft link

ln -s $ORACLE_HOME/bin/sqlplus /usr/bin

10. Switch to oracle user

su - oracle 

insert image description here

11. Log in to sqlplus and modify the passwords of sys and system users

sqlplus /nolog
conn /as sysdba 

insert image description here

12. Modify the sys and system user passwords and refresh permissions

alter user system identified by oracle;
alter user sys identified by oracle;
ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED; 

insert image description here

Exit: exit;
13. Check the status of the oracle instance

lsnrctl status 

insert image description here

14. Use nacivat to connect to the Oracle database

Service name: helowin (must fill in helowin)
Password: oracle (the password set in step 12)

insert image description here

This is the end of this article about installing Oracle_11g with Docker. For more information about installing Oracle_11g with Docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of installing and configuring Oracle database in Docker
  • Tutorial on installing and configuring Oracle on Docker
  • The most complete steps in installing Oracle19c with Docker

<<:  HTML Several Special Dividing Line Effects

>>:  Design theory: people-oriented green design

Recommend

JavaScript super detailed implementation of web page carousel

Table of contents Creating HTML Pages Implement t...

Tomcat common exceptions and solution code examples

The company project was developed in Java and the...

Five solutions to cross-browser problems (summary)

Brief review: Browser compatibility issues are of...

Detailed explanation of storage engine in MySQL

MySQL storage engine overview What is a storage e...

8 examples of using killall command to terminate processes in Linux

The Linux command line provides many commands to ...

Methods and steps for deploying multiple war packages in Tomcat

1 Background JDK1.8-u181 and Tomcat8.5.53 were in...

Vue implements tree table

This article example shares the specific code of ...

Some parameter descriptions of text input boxes in web design

<br />In general guestbooks, forums and othe...

4 solutions to CSS browser compatibility issues

Front-end is a tough job, not only because techno...

Analysis of the problem of deploying vue project and configuring proxy in Nginx

1. Install and start nginx # Install nginx sudo a...

Docker primary network port mapping configuration

Port Mapping Before the Docker container is start...

Summarize how to optimize Nginx performance under high concurrency

Table of contents Features Advantages Installatio...

Summary of Problems in Installing MySQL 5.7.19 under Linux

The first time I installed MySQL on my virtual ma...

How to install mysql in docker

I recently deployed Django and didn't want to...