Analyze the problem of pulling down the Oracle 11g image configuration in Docker

Analyze the problem of pulling down the Oracle 11g image configuration in Docker

1. Pull the image

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

Image details: https://dev.aliyun.com/detail.html?spm=5176.1972343.2.8.E6Cbr1&repoId=1969

Since I have already pulled the image, it is shown here as existing. Check the image information

docker images

2. Create and container information

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

Since my container has been created here (the command is as expected, the container name is oracle_11g), I can start it directly here.

docker start oracle_11g

3. Enter the console to set user information

docker exec -it oracle_11g bash

Log in to sqlplus. It is found that the sqlplus command is not available here, so relevant configuration is required. The steps are as follows:

(1) Switch to root user mode

su root

Enter the password helowin

(2) Edit the profile file to configure the ORACLE environment variables

vi /etc/profile and add the following command at the end of the file

export ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_2

export ORACLE_SID=helowin

export PATH=$ORACLE_HOME/bin:$PATH

Exit and save.

(3) Software connection

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

Because I have already created it, the package flag already exists.

(4) Switch to oracle user

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

sqlplus /nolog

conn /as sysdba

Then execute the following command

alter user system identified by oracle;

alter user sys identified by oracle;

ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;

4. Login verification

Login successful

5. Submit changes

docker commit container name or ID new image name: version

This is the end of this article about Docker to pull down the Oracle 11g image configuration. For more relevant Docker Oracle 11g image configuration content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed tutorial on Docker pulling Oracle 11g image configuration
  • How to install Oracle_11g using Docker
  • Detailed explanation of installing and configuring Oracle database in Docker
  • Tutorial on installing and configuring Oracle on Docker

<<:  What knowledge systems do web designers need?

>>:  MySQL foreign key constraint (FOREIGN KEY) case explanation

Recommend

Use of Linux crontab command

1. Command Introduction The contab (cron table) c...

Quickly master the use of Docker to build a development environment

As the platform continues to grow, the project...

Cross-domain issues in front-end and back-end separation of Vue+SpringBoot

In the front-end and back-end separation developm...

Pure CSS3 to achieve mouse over button animation Part 2

After the previous two chapters, do you have a ne...

Vue two fields joint verification to achieve the password modification function

Table of contents 1. Introduction 2. Solution Imp...

Vue.js implements the nine-grid image display module

I used Vue.js to make a nine-grid image display m...

The reason why MySQL uses B+ tree as its underlying data structure

We all know that the underlying data structure of...

Tutorial on upgrading from Centos7 to Centos8 (with pictures and text)

If you upgrade in a formal environment, please ba...

Understanding and application of JavaScript ES6 destructuring operator

Table of contents Preface The role of deconstruct...

How to install and modify the initial password of mysql5.7.18

For Centos installation of MySQL, please refer to...

Vue realizes the whole process of slider drag verification function

Rendering Define the skeleton, write HTML and CSS...

Summary of MySQL string interception related functions

This article introduces MySQL string interception...

Detailed tutorial on configuring nginx for https encrypted access

environment: 1 CentOS Linux release 7.5.1804 (Cor...

MySQL 5.7.17 installation and configuration method graphic tutorial (windows10)

MySQL 5.7.17 installation and configuration metho...

Why is it not recommended to use index as the key attribute value in Vue?

Table of contents Preface The role of key The rol...