日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
11gr2Linux數(shù)據(jù)庫安裝指南(11gr2linux)

Title: 11gr2 linux Database Installation Guide

成都創(chuàng)新互聯(lián)公司從2013年成立,我們提供高端網(wǎng)站建設(shè)、微信小程序開發(fā)、電商視覺設(shè)計(jì)、成都app軟件開發(fā)公司及網(wǎng)絡(luò)營銷搜索優(yōu)化服務(wù),在傳統(tǒng)互聯(lián)網(wǎng)與移動(dòng)互聯(lián)網(wǎng)發(fā)展的背景下,我們堅(jiān)守著用標(biāo)準(zhǔn)的設(shè)計(jì)方案與技術(shù)開發(fā)實(shí)力作基礎(chǔ),以企業(yè)及品牌的互聯(lián)網(wǎng)商業(yè)目標(biāo)為核心,為客戶打造具商業(yè)價(jià)值與用戶體驗(yàn)的互聯(lián)網(wǎng)+產(chǎn)品。

Introduction

Database installation can be a daunting task, especially for those who are new to the process. Thankfully, Oracle provides detled instructions on how to install their 11gR2 Linux database. In this article, we will provide a step-by-step guide on how to install the 11gR2 Linux database.

Step 1: System Requirements

Before installing the database, it is important to ensure that your system meets the minimum requirements. The requirements are as follows:

– A minimum of 2GB of RAM

– 1GB of disk space for the software

– 2GB of disk space for the database files

– Linux x86 or x86-64 operating system

Step 2: Download the Installation Files

The next step is to download the installation files from the Oracle website. To do this, go to the following link: https://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html

Once the download is complete, navigate to the directory where the files were downloaded.

Step 3: Extract the Installation Files

Next, extract the installation files. To do this, run the following command in the terminal:

$ unzip linux_11gR2_database_1of2.zip

$ unzip linux_11gR2_database_2of2.zip

This will extract the files to a directory called “database”.

Step 4: Install Required Packages

Before proceeding with the installation, you will need to install some required packages. To do this, run the following command in the terminal:

$ sudo yum install binutils compat-libcap1 compat-libstdc++-33 gcc gcc-c++ glibc glibc-devel ksh libo libo-devel libgcc libstdc++ libstdc++-devel make sysstat

Step 5: Modify Kernel Parameters

Next, you will need to modify some kernel parameters. To do this, open the /etc/sysctl.conf file and add the following lines:

fs.file-max = 6815744

kernel.sem = 250 32023 100 128

kernel.shmmni = 4096

kernel.shmall = 1073741824

kernel.shmmax = 4398046511104

net.core.rmem_default = 262144

net.core.rmem_max = 4194304

net.core.wmem_default = 262144

net.core.wmem_max = 1048576

Then, run the following command in the terminal to apply the changes:

$ sudo sysctl -p

Step 6: Create the Oracle User

Next, you will need to create the Oracle user. To do this, run the following command in the terminal:

$ sudo useradd -m -d /home/oracle -s /bin/bash oracle

Then, set the password for the Oracle user by running the following command:

$ sudo passwd oracle

Step 7: Edit the Environment Variables for the Oracle User

Now you will need to edit the environment variables for the Oracle user. To do this, open the .bash_profile file in the Oracle user’s home directory and add the following lines:

export ORACLE_SID=orcl

export ORACLE_BASE=/u01/app/oracle

export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1

export PATH=$PATH:$ORACLE_HOME/bin

Then run the following command to apply the changes:

$ source .bash_profile

Step 8: Run the Installer

It is now time to run the installer. To do this, navigate to the directory where the installation files were extracted and run the following command:

$ ./runInstaller

Follow the prompts to complete the installation.

Step 9: Configure the Database

Once the installation is complete, you will need to configure the database. To do this, run the following command in the terminal:

$ $ORACLE_HOME/bin/dbca

Conclusion

Installing the 11gR2 Linux database can be a time-consuming task, but by following the steps outlined in this article, you should be able to complete it successfully. Remember to take your time and ensure that all of the required packages and kernel parameters are properly configured. Happy installing!

相關(guān)問題拓展閱讀:

  • linux 怎么卸載oracle 11g r2安裝的包

linux 怎么卸載oracle 11g r2安裝的包

1、使用SQL*PLUS停止數(shù)據(jù)庫。

$ sqlplus /nolog

SQL> connect / as sysdba

SQL> shutdown

SQL> exit

2、停止Listener

$ lsnrctl stop

3、停止HTTP服乎純務(wù)

# service httpd stop

4、用su或者重新登錄到root(如想重新安裝可以保留oracle用戶,省得輸入環(huán)境變量了)

5、將安裝目錄刪除

# rm -rf /u01/app/oracle/

6、將/usr/bin下的文件刪除

# rm /usr/local/bin/dbhome

# rm /usr/local/bin/oraenv

# rm /usr/local/bin/coraenv

7、將/etc/oratab刪除

# rm /etc/oratab

8、將/etc/oraInst.loc刪除

# rm /etc/oraInst.loc

9、將oracle用戶刪除(若要重新安裝,可以不刪除)

# userdel –r oracle

10、將用戶組刪除(若要重新安裝,可以不刪除)

# groupdel oinstall

# groupdel dba

11、將啟動(dòng)服務(wù)刪除

# chkconfig –del dbora

11gr2 linux的介紹就聊到這里吧,感謝你花時(shí)間閱讀本站內(nèi)容,更多關(guān)于11gr2 linux,11gr2 Linux數(shù)據(jù)庫安裝指南,linux 怎么卸載oracle 11g r2安裝的包的信息別忘了在本站進(jìn)行查找喔。

香港服務(wù)器選創(chuàng)新互聯(lián),2H2G首月10元開通。
創(chuàng)新互聯(lián)(www.cdcxhl.com)互聯(lián)網(wǎng)服務(wù)提供商,擁有超過10年的服務(wù)器租用、服務(wù)器托管、云服務(wù)器、虛擬主機(jī)、網(wǎng)站系統(tǒng)開發(fā)經(jīng)驗(yàn)。專業(yè)提供云主機(jī)、虛擬主機(jī)、域名注冊(cè)、VPS主機(jī)、云服務(wù)器、香港云服務(wù)器、免備案服務(wù)器等。


分享標(biāo)題:11gr2Linux數(shù)據(jù)庫安裝指南(11gr2linux)
網(wǎng)頁路徑:http://www.dlmjj.cn/article/dppiepc.html