ORACLE11G based Linux 6.3 installation

Source: Internet
Author: User
Tags create directory dba

First, the installation package:

P13390677_112040_linux-x86-64_1of7.zip

P13390677_112040_linux-x86-64_2of7.zip


Second,: Configure global parameters:

1. Configure permissions for Oracle users: vim/etc/security/limits.conf

In the last line of configuration, write the following:

Oracle Soft Nofile 65536

Oracle Hard Nofile 65536

Oracle Soft Nproc 16384

Oracle Hard Nproc 16384


limits.conf file Format:

username| @groupname Type Resource limit

1) Nofile: Maximum number of file descriptors that can be opened

2) Nproc: Maximum number of processes available for a single user

3) Soft: Soft limit, generally does not exceed the hard limit

4) Hart: Hard limit, soft limit value is generally more than the hard limit of the value


650) this.width=650; "Src=" Http://s1.51cto.com/wyfs02/M00/8B/2B/wKioL1hGayzioMMQAABLJSorPUg583.png-wh_500x0-wm_3 -wmp_4-s_2846973353.png "title=" A5F2.tm.png "alt=" Wkiol1hgayziommqaabljsorpug583.png-wh_50 "/>


2, configure the Linux kernel parameters: vi/etc/sysctl.conf//settings sysctl.conf can be used to improve the performance of Linux

---------------------------------------------

Kernel.shmmax = 6160392192

Kernel.shmmni = 4096

Kernel.shmall = 2097152

Kernel.sem = 250 32000 100 128

Fs.file-max = 6815744

FS.AIO-MAX-NR = 1048576

Net.ipv4.ip_local_port_range = 9000 65500

Net.core.rmem_default = 262144

Net.core.rmem_max = 4194304

Net.core.wmem_default = 262144

Net.core.wmem_max = 1048576


1) Shmmax: Defines the maximum size of the shared memory segment, in bytes, and the default is 32M.

2) Shmmni: The user sets the maximum number of shared memory segments in the system range; The default is: 4096.

3) Shmall: Define the total amount of shared memory that the system can use at a time, the Unit "page"; The default is: 2097152.

4) SEM: Indicates the amount of signal set.

5) File-max: The maximum number of file handles. That is, the maximum number of files that can be opened.

6) Aio-max-nr: Sets the number of asynchronous IO requests that can be owned at the same time.

7) Net.ipv4.ip_local_port_range: The range of ports used for outward connection. The default is: 32768-61000

8) Net.core.rmem_default: Reserved memory defaults for receiving buffers for TCP sockets.

9) Net.core.rmem_max: Reserved memory defaults for receiving buffers for TCP sockets.

Net.core.wmem_default: Reserved memory default value for send buffer for TCP sockets, Default: 16384 (16k)

Core.wmem_max: The maximum amount of memory reserved for a TCP socket for sending buffers.

12) Use the "sysctl-p" command to take effect directly immediately.

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M02/8B/31/wKiom1hGiJPQduViAAC8LgCfONs271.png-wh_500x0-wm_3 -wmp_4-s_3042771063.png "title=" qq picture 20161206174429.png "alt=" Wkiom1hgijpqduviaac8lgcfons271.png-wh_50 "/>


Third, create Oralce database users and user groups

Create Data user group: DBA

Groupadd dba


Create an Installation user group: Oinstall

Groupadd Oinstall


Create User: Oracle

Useradd-g oinstall-g dba-m Oracle//-m do not automatically create a user's log in directory


Set User password:

passwd Oracle

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M00/8B/3D/wKioL1hH5eeDN9QKAADcDf-gid8908.png-wh_500x0-wm_3 -wmp_4-s_1150916649.png "title=" qq picture 20161207183451.png "alt=" Wkiol1hh5eedn9qkaadcdf-gid8908.png-wh_50 "/>


Iv. Creating file directories and permissions for Oracle use:

1. Create the Oracle Base directory:

Mkdir-p/u01/app/oracle


mkdir Creating a Directory command

-P can create multiple subdirectories at the same time

650) this.width=650; "Src=" Http://s5.51cto.com/wyfs02/M00/8B/5C/wKiom1hKW7OjsGnZAABA5RUNueU739.png-wh_500x0-wm_3 -wmp_4-s_1893685971.png "title=" qq picture 20161209152154.png "alt=" Wkiom1hkw7ojsgnzaaba5runueu739.png-wh_50 "/>


2. Assign users and groups to the base directory:

Chown-r oracle.oinstall/u01/

Chown changing the owning user and owning group

-R changes the user and the owning group of all subdirectories under the day directory

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M00/8B/5C/wKiom1hKXv_B0J1vAADR9GX6Y30309.png-wh_500x0-wm_3 -wmp_4-s_3966084077.png "title=" qq picture 20161209153200.png "alt=" Wkiom1hkxv_b0j1vaadr9gx6y30309.png-wh_50 "/>


/** This command can be installed in subsequent Oracle user-installed Oracle programs by calling graphical **/

#xhost +

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M02/8B/5E/wKiom1hKg5HCzxSoAAA10e87ab4127.png-wh_500x0-wm_3 -wmp_4-s_1301718691.png "title=" qq picture 20161209181209.png "alt=" Wkiom1hkg5hczxsoaaa10e87ab4127.png-wh_50 "/>


The following actions are performed under Oracle users

Su-oracle


V. Configuring the Oracle User Environment variables:

Vim. BASHRC//Configure environment variables

SOURCE. BASHRC//execute this file in effect environment variable

----------------------------------------------------------

/**oracle_base:oracle Base Directory **/

Export Oracle_base=/u01/app/oracle

/**oracle_home:oracle Home Directory **/

Export Oracle_home= $ORACLE _base/product/11.2.0/db_1

/**oracle_sid:oracle Process Name **/

Export ORACLE_SID=ORCL

/**path: Command environment variable; add Oracle_home/bin directory path to this environment variable **/

Export path= $ORACLE _home/bin: $PATH

/**ld_library_path: Dynamic library find path variable; add oracle_home/lib directory path to this environment variable **/

Export ld_library_path= $ORACLE _home/lib: $LD _library_path

/** Setting language Environment **/

Export Lang=en_us

650) this.width=650; "Src=" Http://s5.51cto.com/wyfs02/M00/8B/5D/wKiom1hKeACA4ZCMAAD3Pg45TkE158.png-wh_500x0-wm_3 -wmp_4-s_1694409986.png "title=" qq picture 20161209172245.png "alt=" Wkiom1hkeaca4zcmaad3pg45tke158.png-wh_50 "/>


Six, unzip the installation package:

Unzip P13390677_112040_linux-x86-64_1of7.zip

Unzip P13390677_112040_linux-x86-64_2of7.zip


650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M02/8B/5A/wKioL1hKfTDgFGLhAAG8BDiNky4348.png-wh_500x0-wm_3 -wmp_4-s_2919910966.png "title=" qq picture 20161209174427.png "alt=" Wkiol1hkftdgfglhaag8bdinky4348.png-wh_50 "/>

Note: Verify that the extracted directory permissions are Oracle users and Oinstall groups


VII. Create a directory for Oracle software installation and upgrade, and configure permissions:

1. Create directory: Orainventory

Mkdir/u01/app/orainventory


2. Assign and Confirm directory permissions:

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M01/8B/5A/wKioL1hKfjmzo93tAAB9zivFydA148.png-wh_500x0-wm_3 -wmp_4-s_1263736254.png "title=" qq picture 20161209174930.png "alt=" Wkiol1hkfjmzo93taab9zivfyda148.png-wh_50 "/>


VIII. Installation Database:

1. Run the installation script:

CD database/

./runinstaller

650) this.width=650; "Src=" Http://s1.51cto.com/wyfs02/M02/8B/5A/wKioL1hKhqfjkSN0AAEOYT65imo707.png-wh_500x0-wm_3 -wmp_4-s_1222232602.png "title=" qq picture 20161209182526.png "alt=" Wkiol1hkhqfjksn0aaeoyt65imo707.png-wh_50 "/>



2, graphical interface installation:

1) Wait for the graphical interface to be called:

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M00/8B/7D/wKioL1hPt6vxXrHpAAC5KaP7Q8M883.png-wh_500x0-wm_3 -wmp_4-s_2302103066.png "title=" qq picture 20161213164218.png "alt=" Wkiol1hpt6vxxrhpaac5kap7q8m883.png-wh_50 "/>


2) Error in Call:

Error message: Prvf-0002:could not retrieve local nodename

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M00/8B/81/wKiom1hPuTSxUc7oAACqz0WJSeM519.png-wh_500x0-wm_3 -wmp_4-s_1905220896.png "title=" qq picture 20161213170223.png "alt=" Wkiom1hputsxuc7oaacqz0wjsem519.png-wh_50 "/>

This problem occurs because the local node name cannot be found.

A, first check the network is not connected, and can not start 650) this.width=650; "Src=" http://s5.51cto.com/wyfs02/M01/8B/81/ Wkiom1hpurux66faaafo00an2pk109.png-wh_500x0-wm_3-wmp_4-s_855691215.png "title=" qq picture 20161213170752.png "Width=" "Height=" "border=" 0 "hspace=" 0 "vspace=" 0 "style=" width:700px;height:300px; "alt=" Wkiom1hpurux66faaafo00an2pk109.png-wh_50 "/>:

B, resolve eth0 cannot start the problem:

/** See if the network management service is turned on **/

[[Email protected] desktop]# service NetworkManager status

650) this.width=650; "Src=" Http://s4.51cto.com/wyfs02/M00/8B/81/wKiom1hPu3agY0xqAAAsAJ2D3AA841.png-wh_500x0-wm_3 -wmp_4-s_2532386104.png "title=" qq picture 20161213171204.png "alt=" Wkiom1hpu3agy0xqaaasaj2d3aa841.png-wh_50 "/>

/** Network management tool users will affect the Eth0 network boot, generally closed state, is now the boot state, so shut down the service **/

[[Email protected] desktop]# service NetworkManager stop

650) this.width=650; "Src=" Http://s1.51cto.com/wyfs02/M00/8B/7D/wKioL1hPu_-AkELCAAAuHJpeTeA484.png-wh_500x0-wm_3 -wmp_4-s_403776607.png "title=" qq picture 20161213171423.png "alt=" Wkiol1hpu_-akelcaaauhjpetea484.png-wh_50 "/>

/** Restart the Eth0 NIC service again and start the success **/

[Email protected] desktop]# service network restart

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M00/8B/7D/wKioL1hPvO_xC9wHAAHr2BA20TA673.png-wh_500x0-wm_3 -wmp_4-s_3410113762.png "title=" qq picture 20161213171813.png "alt=" Wkiol1hpvo_xc9whaahr2ba20ta673.png-wh_50 "/>

After the network problem is resolved, try to start the Oralce installation again, the problem remains.


C. Change the Hosts file: Add host name and address in it

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M01/8B/7E/wKioL1hPxWPhLIRbAACY8PespYA713.png-wh_500x0-wm_3 -wmp_4-s_2199672419.png "title=" qq picture 20161213174839.png "alt=" Wkiol1hpxwphlirbaacy8pespya713.png-wh_50 "/>

Start the Oracle installation again, problem solved, can display the graphical installation.

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M01/8B/7E/wKioL1hPxj7xHdUDAAHNjdCmmM8406.png-wh_500x0-wm_3 -wmp_4-s_152238684.png "title=" qq picture 20161213175735.png "width=" 650 "height=" 387 "border=" 0 "hspace=" 0 "vspace=" 0 " Style= "WIDTH:650PX;HEIGHT:387PX;" alt= "Wkiol1hpxj7xhdudaahnjdcmmm8406.png-wh_50"/>


3) Formal graphical interface installation:

A. Configure security updates, fill in the email addresses that receive security updates, and want to receive security updates through my Oracle support.

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M01/8B/A3/wKioL1hTsdGiZQNUAADl61E8LC8139.png-wh_500x0-wm_3 -wmp_4-s_1700646336.png "title=" qq picture 20161216171833.png "alt=" Wkiol1htsdgizqnuaadl61e8lc8139.png-wh_50 "/>


b, for the security update mailbox is not configured in the case, the next prompt information, for security issues, it is best to provide a mailbox.

Continue to select Yes.

650) this.width=650; "Src=" Http://s1.51cto.com/wyfs02/M02/8B/A7/wKiom1hTsz3BEYUrAADU-0X2Wkc878.png-wh_500x0-wm_3 -wmp_4-s_1695553338.png "title=" qq picture 20161216172452.png "alt=" Wkiom1htsz3beyuraadu-0x2wkc878.png-wh_50 "/>


C, download the UPDATE software: Here we choose to skip the software update project

650) this.width=650; "Src=" Http://s5.51cto.com/wyfs02/M01/8B/A3/wKioL1hTu5zQmV0xAADF6wNkykI212.png-wh_500x0-wm_3 -wmp_4-s_436074616.png "title=" qq picture 20161216180143.png "alt=" Wkiol1htu5zqmv0xaadf6wnkyki212.png-wh_50 "/>


d, installation options:

As the name implies, the new installation database needs to choose the first one, but if someone wants to build the library on their own, you can choose the second one.

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M01/8B/C1/wKiom1hXlv2QBoIHAADFYBI1UZY149.png-wh_500x0-wm_3 -wmp_4-s_635530626.png "title=" qq picture 20161219160838.png "alt=" Wkiom1hxlv2qboihaadfybi1uzy149.png-wh_50 "/>


E, choose which system to install: Select the server class:

650) this.width=650; "Src=" Http://s1.51cto.com/wyfs02/M02/8B/BE/wKioL1hXmGWwITkHAAC19ca8wrU863.png-wh_500x0-wm_3 -wmp_4-s_1184001270.png "title=" qq picture 20161219162018.png "alt=" Wkiol1hxmgwwitkhaac19ca8wru863.png-wh_50 "/>


F, System network type installation options: Select Single-instance database installation.

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M00/8B/C2/wKiom1hXniLhPG6mAADBNypgSrE398.png-wh_500x0-wm_3 -wmp_4-s_1956722938.png "title=" qq picture 20161219164319.png "alt=" Wkiom1hxnilhpg6maadbnypgsre398.png-wh_50 "/>


G, Installation Type: Select Advanced installation.

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M00/8B/C2/wKiom1hXnuKSf2zgAAC7pOtHc4A216.png-wh_500x0-wm_3 -wmp_4-s_247979888.png "title=" qq picture 20161219164820.png "alt=" Wkiom1hxnuksf2zgaac7pothc4a216.png-wh_50 "/>


H, Product language: Choose Simplified Chinese and English.

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M01/8B/C2/wKiom1hXn1fw6PGzAADUK7A6AiY530.png-wh_500x0-wm_3 -wmp_4-s_2633956765.png "title=" qq picture 20161219165014.png "alt=" Wkiom1hxn1fw6pgzaaduk7a6aiy530.png-wh_50 "/>


I, database version: Select Enterprise Edition (4.7GB)

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M01/8B/BE/wKioL1hXoGLithqYAADmNuMQoaE019.png-wh_500x0-wm_3 -wmp_4-s_368198882.png "title=" qq picture 20161219165229.png "alt=" Wkiol1hxoglithqyaadmnumqoae019.png-wh_50 "/>


J, Database Installation location:

Oracle_base (Oracle Base directory):/u01/app/oracle

Software location (software installation directory):/u01/app/oracle/product/11.2.0/db_1

The above directory is the system default, before the environment variable setting is also consistent with this, if you need to modify the default installation path, then the environment variables must follow the change.

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M02/8B/BE/wKioL1hXoXTT6KYXAADLdJkH1Gk134.png-wh_500x0-wm_3 -wmp_4-s_3218112438.png "title=" qq picture 20161219165918.png "alt=" Wkiol1hxoxtt6kyxaadldjkh1gk134.png-wh_50 "/>


K, create a product list:

The manifest directory can be changed by itself, or it can be changed by default, but the permissions of this directory are to be accessed by the Oinstall group user rights.

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M01/8B/C2/wKiom1hXokegT-KqAADE_sA9niU822.png-wh_500x0-wm_3 -wmp_4-s_875848304.png "title=" qq picture 20161219170245.png "alt=" Wkiom1hxokegt-kqaade_sa9niu822.png-wh_50 "/>


L, configuration Database type: Select General purpose/transaction processing.

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M02/8B/BF/wKioL1hXqOOyJ0NHAADVVBGBIzM546.png-wh_500x0-wm_3 -wmp_4-s_2217976555.png "title=" qq picture 20161219170541.png "alt=" Wkiol1hxqooyj0nhaadvvbgbizm546.png-wh_50 "/>


m, database identifier:

Global database name): ORCL

Oracle Services Identifier (SID) (Oracle service identifier): ORCL

650) this.width=650; "Src=" Http://s1.51cto.com/wyfs02/M02/8B/C2/wKiom1hXq0ziDDhOAADhi-9ikLo218.png-wh_500x0-wm_3 -wmp_4-s_1824414563.png "title=" qq picture 20161219173446.png "alt=" Wkiom1hxq0ziddhoaadhi-9iklo218.png-wh_50 "/>


N, parameter configuration options: Normal installation is the default, the main concern is the character set, if the import data character set inconsistent, may migrate the database failed.

650) this.width=650; "Src=" Http://s4.51cto.com/wyfs02/M02/8B/BF/wKioL1hXrb2xGA85AADl_VAvNMw174.png-wh_500x0-wm_3 -wmp_4-s_2376023365.png "title=" qq picture 20161219174740.png "alt=" Wkiol1hxrb2xga85aadl_vavnmw174.png-wh_50 "/>


o, database management option settings: Use database control to manage databases.

650) this.width=650; "Src=" Http://s4.51cto.com/wyfs02/M00/8B/C3/wKiom1hXrmbw-zvWAADjAnl2O9g559.png-wh_500x0-wm_3 -wmp_4-s_1538390850.png "title=" qq picture 20161219175401.png "alt=" Wkiom1hxrmbw-zvwaadjanl2o9g559.png-wh_50 "/>


P, Database storage: Select Local file system location store.

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M02/8B/BF/wKioL1hXr3Oyn-a6AAD1AY2ZpE0635.png-wh_500x0-wm_3 -wmp_4-s_3658493640.png "title=" qq picture 20161219175712.png "alt=" Wkiol1hxr3oyn-a6aad1ay2zpe0635.png-wh_50 "/>


Q, Backup, and recovery: Choose not to enable automatic backups.

650) this.width=650; "Src=" Http://s5.51cto.com/wyfs02/M00/8B/BF/wKioL1hXsEihDs2mAADfqOecEN4832.png-wh_500x0-wm_3 -wmp_4-s_3166841297.png "title=" qq picture 20161219180229.png "alt=" Wkiol1hxseihds2maadfqoecen4832.png-wh_50 "/>


R, Scheme password: Use the same password "Oracle" for all accounts

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M01/8B/C8/wKiom1hYqLrh0cC-AADtGX5Uwbs635.png-wh_500x0-wm_3 -wmp_4-s_355184042.png "title=" qq picture 20161220113820.png "alt=" Wkiom1hyqlrh0cc-aadtgx5uwbs635.png-wh_50 "/>

Because the database administrator account password is relatively simple, the following prompt, select Yes.

650) this.width=650; "Src=" Http://s4.51cto.com/wyfs02/M00/8B/C5/wKioL1hYqXqQgkhNAAD6M8a4t9k750.png-wh_500x0-wm_3 -wmp_4-s_4228316668.png "title=" qq picture 20161220114501.png "alt=" Wkiol1hyqxqqgkhnaad6m8a4t9k750.png-wh_50 "/>


s, operating system personnel belong to group:

650) this.width=650; "Src=" Http://s1.51cto.com/wyfs02/M00/8B/C8/wKiom1hYqpmQFJBNAADrbJBfGG4533.png-wh_500x0-wm_3 -wmp_4-s_2468090269.png "title=" qq picture 20161220114859.png "alt=" Wkiom1hyqpmqfjbnaadrbjbfgg4533.png-wh_50 "/>


T, installation conditions check, there may be some system parameters are wrong ah, or rely on the package is missing AH and so on environment inspection.

Check the dependencies to see if any of the installed packages are missing, and follow the prompts to install the dependent packages.

650) this.width=650; "Src=" Http://s4.51cto.com/wyfs02/M02/8B/C5/wKioL1hYrF2AMpvPAAElecEktJ0488.png-wh_500x0-wm_3 -wmp_4-s_4176461710.png "title=" qq picture 20161220115808.png "alt=" Wkiol1hyrf2ampvpaaelecektj0488.png-wh_50 "/>

Install GCC and gcc-c++, then check Again

650) this.width=650; "Src=" Http://s1.51cto.com/wyfs02/M02/8B/CA/wKiom1hY05CQuwSlAAKKlwLCxWg837.png-wh_500x0-wm_3 -wmp_4-s_1411405557.png "title=" qq picture 20161220144445.png "alt=" Wkiom1hy05cquwslaakklwlcxwg837.png-wh_50 "/>

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M02/8B/CA/wKiom1hY1BzwL_bqAAD8H9spXfs062.png-wh_500x0-wm_3 -wmp_4-s_3316831080.png "title=" qq picture 20161220144738.png "alt=" Wkiom1hy1bzwl_bqaad8h9spxfs062.png-wh_50 "/>

If there is an installation package that cannot be found, I know that this is not much of an impact, so I will ignore the continuation of the installation.

650) this.width=650; "Src=" Http://s5.51cto.com/wyfs02/M01/8B/C6/wKioL1hY1haQAazgAADpk76HAbk044.png-wh_500x0-wm_3 -wmp_4-s_2309706198.png "title=" qq picture 20161220145510.png "alt=" Wkiol1hy1haqaazgaadpk76habk044.png-wh_50 "/>

You will be warned when you continue, press Yes.

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M02/8B/CA/wKiom1hY1vOzrwOSAAD37GoUEao135.png-wh_500x0-wm_3 -wmp_4-s_1771994722.png "title=" qq picture 20161220145929.png "alt=" Wkiom1hy1vozrwosaad37goueao135.png-wh_50 "/>


U, product summary, mainly contains the variables of the previous configuration parameters and so on, it is recommended to save the archive.

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M02/8B/CA/wKiom1hY12qRa7-1AADs3wXsjy8903.png-wh_500x0-wm_3 -wmp_4-s_117785406.png "title=" qq picture 20161220150115.png "alt=" Wkiom1hy12qra7-1aads3wxsjy8903.png-wh_50 "/>


V, install the database is started.

650) this.width=650; "Src=" Http://s5.51cto.com/wyfs02/M01/8B/C7/wKioL1hY2CCStKhJAAEtvlYaxhk116.png-wh_500x0-wm_3 -wmp_4-s_3394908655.png "title=" qq picture 20161220150423.png "alt=" Wkiol1hy2ccstkhjaaetvlyaxhk116.png-wh_50 "/>

Installing a DB instance

650) this.width=650; "Src=" Http://s4.51cto.com/wyfs02/M00/8B/CA/wKiom1hY2ziziDasAAFqxxeQZRY876.png-wh_500x0-wm_3 -wmp_4-s_1228998762.png "title=" qq picture 20161220151714.png "alt=" Wkiom1hy2zizidasaafqxxeqzry876.png-wh_50 "/>

During the installation process, the database is created, related information and password management.

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M00/8B/C7/wKioL1hY4VHgA9phAAE29j7u2yg434.png-wh_500x0-wm_3 -wmp_4-s_1248635360.png "title=" qq picture 20161220154329.png "alt=" Wkiol1hy4vhga9phaae29j7u2yg434.png-wh_50 "/>

During the installation, 2 scripts need to be run, both of which are to be run using root.

650) this.width=650; "Src=" Http://s5.51cto.com/wyfs02/M02/8B/CB/wKiom1hY6angTet3AAEQs51MeXM265.png-wh_500x0-wm_3 -wmp_4-s_2168926576.png "title=" qq picture 20161220161910.png "alt=" Wkiom1hy6angtet3aaeqs51mexm265.png-wh_50 "/>

650) this.width=650; "Src=" Http://s2.51cto.com/wyfs02/M02/8B/C8/wKioL1hY6wvwELrkAAGyBe2Bhv4321.png-wh_500x0-wm_3 -wmp_4-s_3108606608.png "title=" qq picture 20161220162522.png "alt=" Wkiol1hy6wvwelrkaagybe2bhv4321.png-wh_50 "/>



W, the installation is complete.

650) this.width=650; "Src=" Http://s3.51cto.com/wyfs02/M00/8B/C8/wKioL1hY66aCcD0AAADCu9N-6Eo641.png-wh_500x0-wm_3 -wmp_4-s_3658878659.png "title=" qq picture 20161220162807.png "alt=" Wkiol1hy66accd0aaadcu9n-6eo641.png-wh_50 "/>


Nine, installation completed, into the database:

Using the command: Sqlplus/as SYSDBA into the database and displays the complete installation, as the case would be.

650) this.width=650; "Src=" Http://s4.51cto.com/wyfs02/M01/8B/CC/wKiom1hY9s6xA--vAACbyphgwiM219.png-wh_500x0-wm_3 -wmp_4-s_1270869028.png "title=" qq picture 20161220171445.png "alt=" Wkiom1hy9s6xa--vaacbyphgwim219.png-wh_50 "/>








This article is from the "Essays" blog, make sure to keep this source http://ysaiy.blog.51cto.com/9316346/1884391

ORACLE11G based Linux 6.3 installation

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.