Translate 번역

Translate to EnglishÜbersetzen Sie zum Deutsch/GermanΜεταφράστε στα ελληνικά/GreekПереведите к русскому/RussianOversetter til Norsk/NorwegianÖversätta till Svensk/Swedishहिन्दी अनुवाद करने के लिए/Hindi
Tradueix al català/CatalanTulkot uz latviešu/LatvianPreložiť do slovenčiny/SlovakVertaal aan het Nederlands/Dutchترجمة الى العربية/ArabicTraduzca al Español/SpanishTraduisez au Français/French
Traduca ad Italiano/ItalianTraduza ao Português/Portuguese日本語に翻訳しなさい /Japanese한국어에게 번역하십시오/Korean中文翻译/Chinese Simplified中文翻译/Chinese TraditionalПереклад на українську/Ukrainian

Ad 광고

Installing Oracle 11g Release 2 on Fedora 13 설치 오라클 페도라 13에 11g 릴리스 2

Oracle 신탁 Database 11g Release 2 is not certified to run on 데이터베이스 11g 릴리즈 2에서 실행하도록 인증되지 않습니다 Fedora 페도라 13 (Goddard) but I wanted to use it to debug a problem with a particular application which used this database. 13 (고다드)하지만 난 그것을 사용하고 싶다면이 데이터베이스를 사용하는 특정 응용 프로그램과 문제를 디버깅하는 방법. I checked on the Internet for details about how to install this version of the Oracle database on Fedora 13 but did not come across comprehensive instructions. 난하지만 페도라 13에있는 Oracle 데이터베이스의이 버전을 설치하는 방법에 포괄적인 지침을 가로질러 오지는 않았 대한 자세한 내용은 인터넷에서 확인 했어요. I therefore decided to write this post as a guide for others who may also wish to install this database on Fedora 13. 그래서 저는 또한 페도라 13에이 데이터베이스를 설치하실 수 있습니다 타인에 대한 가이드로이 게시물을 작성하기로 결정했습니다.

First of all you need to add a number of kernel parameters to /etc/sysctl.conf if they do not already exist in this file or have values less then what is shown here. 우선이의 전부 또는 파일이 존재하지은 이미 그들이 필요에 추가 / 등 / 숫자를 매개 변수의 커널 sysctl.conf면 값을 더 적은 다음에 어떻게 여기에 표시됩니다. These are minimum required values by the way; they can be higher. 이러한 방법으로 최소한의 필요한 값을되며 그들은 더 높을 수 있습니다.

fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 2097152
kernel.shmmax = 536870912
kernel.shmmni = 4096
# semaphores: semmsl, semmns, semopm, semmni
kernel.sem = 250 32000 100 128
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=1048586


Compared to 비교 Sybase ASE 사이베이스 ASE which only requires kernel.shmmax , an Oracle database requires significantly more kernel parameter tweeking. 이것만이 필요 kernel.shmmax 데이터베이스를 오라클 tweeking을 필요로 훨씬 더 많은 커널 매개 변수.

The current value of a kernel parameter can be displayed using the following command: 커널 매개 변수의 현재 값은 다음과 같은 명령을 사용하여 표시할 수 있습니다 :

# /sbin/sysctl -a | grep


If you do not want to reboot your system, just execute the following command to update the kernel with the new parameters: 당신은 시스템을 재부 팅하려면 단지 다음 명령을 매개 변수와 함께 새로운 커널을 업데이 트하는 실행하지 않으려면 :

# /sbin/sysctl -p


You need to install a number of software packages on your system if the packages are not already installed. 당신의 시스템에있는 패키지가있다면 이미 설치되어 있지 않은 소프트웨어 패키지의 번호를 설치해야합니다. If you have installed the Development Tools package group, the majority of the necessary packages will already be installed. 패키지가 필요한 경우 당신이 가진 설치한 개발 도구 과반수의 패키지 그룹을 설치하도록하겠다 이미. Install the Development Tools package group and the following packages if not already installed: 설치 개발 툴 패키지 그룹 및 다음과 같은 패키지가 설치되지 않은 경우에는 이미 :

  • binutils binutils
  • libaio, libaio-devel libaio, libaio - devel
  • ksh ksh
  • sysstat sysstat
  • unixODBC, unixODBC-devel unixODBC, unixODBC - devel
  • compat-libstdc++-33 compat - libstdc + + -33

Next, you need to modify PAM (Plugable Authentication Module) to increase session limits for the oracle user which we will create later on. 다음으로, 당신은 나중에 만들어야 수정 팸 (Plugable 것입니다 우리는 오라클 사용자 제한을위한 인증 모듈 세션 증가)합니다. Add the following line to /etc/pam.d/login if it does not already exist: 존재에 다음 줄을 추가하는 방법은 / etc 이미 / pam.d하지 /니까 로그인하는 경우 :

    session    required     pam_limits.so


and add the following lines to /etc/security/limits.conf : 그리고 limits.conf / 보안을 / etc 다음 줄을 추가하기 위해 / :

    oracle     soft    nproc   2047
    oracle     hard    nproc   16384
    oracle     soft    nofile  1024
    oracle     hard    nofile  65536


Note that this file may not currently exist on your system. 이 파일이 현재 시스템에 존재하지 않을 수 있습니다. You may have to create it. 당신이 그것을 만들어야 할 수 있습니다.

Now create a number of new users and groups as follows: 이제 새로운 사용자와 같은 그룹의 번호를 만들 다음과 같습니다 :

groupadd oinstall
groupadd dba
groupadd oper
groupadd asmadmin

useradd -g oinstall -G dba,oper,asmadmin oracle


and set a password for the new oracle user. 사용자 새로운 오라클 집합 비밀 번호를합니다.

You must disable Secure Linux (SELINUX) while installing the database. 당신은 보안 리눅스 (SELinux가) 데이터베이스를 설치하는 동안 해제해야합니다. Edit /etc/selinux/config as follows: 편집은 / etc / SELinux가 /로 설정 다음과 같습니다 :

SELINUX=disabled


and execute setenforce off . 승하차 setenforce 실행합니다.

Edit the /etc/redhat-release file replacing the current release information – Fedora release 13 (Goodwin) – with the following: 편집은 / etc / 레드햇 - 릴리스 정보 파일을 교체하는 현재의 릴리스 - 페도라 버전을 13 일 (Goodwin) - 다음과 같이 :

redhat release 5


You must create the directories in which the Oracle database software will be installed. 당신이 담겨있는 Oracle 데이터베이스 소프트웨어가 설치 될 디렉토리를 만들어야합니다. In our example, the directory is /app/oracle and the SID is dbhome_1 . 우리의 예제에서, 디렉토리는 / 애플 리케이션 / 오라클과 SID는 dbhome_1입니다.

mkdir -p /app/oracle/product/11.2.0/dbhome_1
chown -R oracle:oinstall /app
chmod -R 775 /app


The remaining steps require that you are logged in as oracle . 나머지 단계는 오라클 필요한 그로 로그인하면. As user oracle , download Oracle Database 11g R2 from 신탁으로 사용자에서 오라클 데이터베이스 11g R2는 다운로드 Oracle 신탁 and place the two files you downloaded into the same subdirectory. 그리고 당신은 동일한 하위 디렉토리에 다운로드한 파일을 두 곳. I placed them in ~oracle/tmp but you are free to choose any subdirectory. 내가 tmp를 /에 배치 그들을 ~ 신탁하지만 당신은 어떤 서브 디렉토리를 선택할 수 있습니다 무료입니다. Then unzip both files. 그런 다음 두 파일을 압축을 풉니다.

# unzip linux.x64_11gR2_database_1of2.zip
# unzip linux.x64_11gR2_database_2of2.zip
# ls -d */
database/
#


A single subdirectory called database is created. 하나의 하위 디렉토리라는 데이터베이스가 만들어집니다. This subdirectory contains the unzipped files. 이 하위 디렉토리가 압축이 풀린 파일이 포함되어 있습니다.

Assuming that the user oracle is using the bash shell, add the following lines to the oracle user's .bash_profile file, changing ORACLE_HOSTNAME , ORACLE_HOME , etc. as required to suit your particular requirements: , 가정은 사용자의 bash는 오라클이 사용하는 쉘을에 다음 줄을 추가 오라클 사용자의. bash_profile 파일을 변경하는 등 ORACLE_HOSTNAME를 ORACLE_HOME, 요구 사항을 특정하여 소송으로 필요한 :

# Oracle Settings
TMP=/tmp; export TMP
TMPDIR=$TMP; export TMPDIR

ORACLE_HOSTNAME=ultra.xfpmurphy.com; export ORACLE_HOSTNAME
ORACLE_UNQNAME=dbhome_1; export ORACLE_UNQNAME
ORACLE_BASE=/app/oracle; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1; export ORACLE_HOME
ORACLE_SID=dbhome_1; export ORACLE_SID
ORACLE_TERM=xterm; export ORACLE_TERM
PATH=/usr/sbin:$PATH; export PATH
PATH=$ORACLE_HOME/bin:$PATH; export PATH

LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH

if [ $USER = "oracle" ]; then
    if [ $SHELL = "/bin/ksh" ]; then
        ulimit -p 16384
        ulimit -n 65536
    else
        ulimit -u 16384 -n 65536
    fi
fi


If you are using a different shell, you will need to set up these enviromental variables and limits using the appropriate shell syntax and shell initialization file. 다른 shell을 사용하는 경우,이 환경 변수를 제한하고 적절한 셸 문법과 쉘 초기화 파일을 사용하여 설정해야합니다. You may also need to set the NLS_LANG environmental variable to match your country, language and desired character set, eg germany_germany.we8iso8859p1 . 당신은 germany_germany.we8iso8859p1을 수도 있습니다 예를 들어, 설정을 설정 NLS_LANG 환경, 국가와 일치하여 변수에 언어 및 원하는 캐릭터도해야합니다.

Oracle databases are installed using the Oracle Universal Installer (OUI) which is GUI-based and uses the X Window system. Oracle 데이터베이스가 오라클 유니버설 설치 (지우)는 GUI 기반이며 X 윈도우 시스템을 사용하여 설치됩니다. There is no equivalent command line installer. 아무 동등한 명령줄 설치 프로그램입니다. You may need to set the your DISPLAY environmental variable and use the xhost utility to configure server access. 당신은 서버에 대한 액세스를 표시하여 수도 필요로 설정된 환경 구성 xhost 유틸리티를 위해 사용하는 변수를하고. Start OUI by issuing the runInstaller command in the ~oracle/tmp/database directory. 시작 응 디렉터리 데이터베이스는 / tmp / 신탁에 ~에 의해 발행 runInstaller 명령을.

If OUI cannot determine your IP address because it is not in /etc/hosts then you will get the following error: 주소를 / 아니 때문이의 IP 경우 지우 확인할 수 있습니다 / 오류를 호스팅하는 다음 다음 당신은 얻을 것이다 :

[INS-06101] IP address of localhost could not be determined


If you see an error message similar to one of the following: “Failed to connect to server”, “Connection refused by server” or “Can't open display”, then you have a problem with X Windows, either with permissions or the DISPLAY variable. 당신이 오류 메시지는 다음 중 하나와 유사한 표시되면 : "서버"에 연결하지 못했습니다, "연결이 서버에 의해"거절 또는 "수 없습니다 디스플레이"를 열고, 다음 엑스 윈도우에 문제가있어, 권한이나 중 하나와 함께 디스플레이 변수. I am going to assume you know how to fix such problems. 난 당신이 어떻게 이러한 문제를 해결할지 생각 하겠어.

After answering a few basic questions, you should see the following Typical Install Configuration screen: 몇 가지 기본적인 질문에 대답하면, 다음과 같은 일반적인 설치 구성 화면이 나타납니다 :

오라클 설치 화면 캡처. 8 단계 4

Check the settings carefully before proceeding further. 신중하게 더 진행하기 전에 설정을 확인합니다.

Next OUI checks that the installed software development and runtime packages are correct: 다음 응 검사는 설치된 소프트웨어 개발 및 런타임 패키지가 올바른지 :

오라클 설치 화면 캡처

Fedora 13 will fail all these checks. 페도라 13이 모든 검사를 실패합니다. Just tick the check box Ignore All on the top right hand to ignore these errors. 그냥 오류를 무시하는 이들 손을 무시 모든 틱 체크 박스를 오른쪽 상단에있는. So long as you have the latest version of each of these packages installed, all will be fine. 당신은 설치된 각 패키지의 최신 버전으로 잘가, 다 잘 될 것입니다. Note that you do not need to install pdksh (Public Domain Korn Shell) if you have ksh installed. 설치 참고하실 필요가 없습니다 당신이 pdksh (퍼블릭 도메인 Korn 셸)을 설치한 경우 ksh 당신이있다.

During the installation, OUI will popup a dialog window advising you that an error has occurred with ins_emagent.mk . 설치하는 동안, 그래요은 ins_emagent.mk와 함께 오류가 발생했습니다 것입 팝업 당신을 조언 창을 대화. See below: 아래 참조 :

오라클 설치 화면 캡처

This error is due to a change in the GCC linker in Fedora 13. 이 오류는 페도라 13에있는 GCC의 링커의 변화로 인한 것입니다. The announcement is 발표는 here 여기에 . . The fix is to edit $ORACLE_HOME/sysman/lib/ins_emagent.mk , search for the line $(MK_EMAGENT_NMECTL) and replace the line with $(MK_EMAGENT_NMECTL) -lnnz11 as shown above. 수정 프로그램은 위 그림과 같이 lnnz11 MK_EMAGENT_NMECTL)됩니다 편집하려면 $ ORACLE_HOME lib 디렉토리 / /를 sysman / ins_emagent.mk, 검색을위한 (달러 줄을 선 $ (MK_EMAGENT_NMECTL) 교체 및.

After saving the changed file, select the Retry option, and the install should successfully continue. 옵션 파일을 선택 후 다시 시도 변경 절약, 그리고 계속 성공적으로 설치해야합니다. Eventually you should see the Database Configuration Assistant screen as shown below: 아래와 같이 결국은 당신이 데이터베이스 구성 어시스턴트 화면이 나타납니다 :

오라클 설치 화면 캡처

Do not ignore the Password Management button; press it and change the passwords for SYS and SYSTEM . SYSTEMSYS 그것은 변화 암호를 위해서도 언론 버튼을, 관리 무시 비밀 번호.

You are now ready to do a basic smoketest of the installed database software. 이제 설치된 데이터베이스 소프트웨어의 기본 SmokeTest을 할 준비가되었습니다.

$ id
uid=502(oracle) gid=501(oinstall) groups=501(oinstall),502(dba),503(oper),504(asmadmin)
$ cd $ORACLE_HOME
$ lsnrctl start

LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 06-AUG-2010 20:47:56

Copyright (c) 1991, 2009, Oracle.  All rights reserved.

Starting /app/oracle/product/11.2.0/dbhome_1/bin/tnslsnr: please wait...

TNSLSNR for Linux: Version 11.2.0.1.0 - Production
System parameter file is /app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
Log messages written to /app/oracle/diag/tnslsnr/ultra/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ultra.xxxxxxxxxx.com)(PORT=1521)))

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production
Start Date                06-AUG-2010 20:47:58
Uptime                    0 days 0 hr. 0 min. 0 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
Listener Log File         /app/oracle/diag/tnslsnr/ultra/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ultra.xxxxxxxxxx.com)(PORT=1521)))
The listener supports no services
The command completed successfully
$

$ emctl start dbconsole
Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
Copyright (c) 1996, 2009 Oracle Corporation.  All rights reserved.
https://ultra.xxxxxxxxxxx.com:1158/em/console/aboutApplication
Starting Oracle Enterprise Manager 11g Database Control ...... started.
------------------------------------------------------------------
Logs are generated in directory /app/oracle/product/11.2.0/dbhome_1/ultra.xxxxxxxxxx.com_orcl/sysman/log
$

$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Fri Aug 6 20:50:12 2010

Copyright (c) 1982, 2009, Oracle.  All rights reserved.

Connected to an idle instance.

SQL> startup
ORACLE instance started.

Total System Global Area  839282688 bytes
Fixed Size		    2217992 bytes
Variable Size		  524290040 bytes
Database Buffers	  306184192 bytes
Redo Buffers		    6590464 bytes
Database mounted.
Database opened.
SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
$


If you have got this far with your installation of Oracle 11g, all is well. 당신이 지금까지 오라클 11g의 설치와 함께, 가지고있다면 모든 것이 잘됩니다. The core Oracle 11g database software is installed and working. 핵심 오라클 11g 데이터베이스 소프트웨어가 설치되어 있고 작동. You may have some tweaking to do for your particular requirements but that is outside the scope of this post. 당신은 어떤 조정 귀하의 특정 요구 사항에해야 할 수도 있지만 그것이 게시물의 범위 밖입니다. Note the listener supports no services message; we will address this shortly. 경청 참고 메시지를 지원하는 서비스는 아니, 우리는 곧이 주소 것입니다.

First, as root , we need to fix up a couple of files. 먼저, 루트로, 우리는 파일의 몇 가지 수정 좀해야합니다. Edit the /etc/oratab file setting the restart flag for each instance to Y : 편집은 / etc / oratab은 Y로 파일의 각 인스턴스 다시 시작 플래그를 설정 :

DB11G:/u01/app/oracle/product/11.2.0/dbhome_1:Y


Edit the /etc/redhat-release file to restore the original release information: 편집은 / etc / 레드햇 - 릴리스 정보를 릴리스 원본 파일을 복원합니다 :

Fedora release 13 (Goodwin)


At this stage you should be able to invoke the Oracle sqldeveloper GUI by invoking $ORACLE_HOMEsqldeveloper/sqldeveloper/bin/sqldeveloper . 이 단계에서 당신은 sqldeveloper / 호출해야 될 수있는 오라클의 빈 / sqldeveloper 달러를 ORACLE_HOMEsqldeveloper / sqldeveloper를 GUI에 의해 호출. Once you have configured a valid connection, you should see a screen similar to this: 일단 당신이 유효한 연결을 구성, 당신은 화면은이 비슷 나타납니다 :

오라클 sqldeveloper 화면 캡처

If you configure listener.ora you can also access the Oracle Enterprise Console via the Web as shown here: 여기에 있으면 같이 당신이 웹 구성 오라클 엔터 프라이즈 콘솔을 통해 할 수 listener.ora 당신은 또한 액세스 :

오라클 엔터 프라이즈 관리 화면

Here is what is in my listener.ora : 여기에 listener.ora가 내 안에 무엇이 :

$ cat $ORACLE_HOME/admin/listener.ora
LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = ultra.xfpmurphy.com)(PORT = 1521))
    )
  )

SID_LIST_LISTENER =
   (SID_LIST =
     (SID_DESC =
       (GLOBAL_DBNAME = DBHOME)
       (ORACLE_HOME = /app/oracle/product/11.2.0/dbhome_1)
       (SID_NAME = orcl)
     )
   )

ADR_BASE_FPM = /app/oracle
$


You will obviously have to use different values for HOST and possibly SID_NAME , ORACLE_HOME and GLOBAL_DBNAME . 당신은 GLOBAL_DBNAME을하고 ORACLE_HOME, 아마도 SID_NAME과 가치를위한 호스트 분명히해야하는 데 사용 다릅니다.

To automatically start and shop the Oracle database during system startup and shutdown you need to place an appropriate script in the /etc/rc.d/init.d directory and symbolically link it to the appropriate rc directories. 디렉토리에 자동으로 시작 rc에 적절한 데이터베이스를하고 가게 오라클하는 동안 그것을 링크를 상징적으로 init.d 디렉토리 및 셧다운 시스템 시작 및 필요한 장소에 적절한 스크립트를 / rc.d /에있는 / etc. Here is a script to start or stop the Oracle database using dbinit : 여기 dbinit을하는 스크립트를 시작 또는 중지를 사용하여 데이터베이스를 오라클 :

#!/bin/bash
#
# init file for starting and stopping Oracle 11g database using dbstart/dbstop
#
# chkconfig: 35 80 30
# description: Oracle database startup and shutdown script
#

. /etc/rc.d/init.d/functions

ORACLE_BASE=/app/oracle
ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1
ORACLE_SID=dbhome_1

case "$1" in
   start)
       echo -n $"Starting Oracle DB:"
       su - oracle -c "$ORACLE_HOME/bin/dbstart $ORACLE_HOME"
       echo "OK"
       ;;
   stop)
      echo -n $"Stopping Oracle DB:"
      su - oracle -c "$ORACLE_HOME/bin/dbshut $ORACLE_HOME"
      echo "OK"
      ;;
   *)
     echo $"Usage: $0 {start|stop}"
esac


and here is an alternative script to start and stop the Oracle database using Oracle Enterprise Manager Database Control: 그리고 여기에 대안이 스크립트 시작하고 Oracle 데이터베이스를 오라클 데이터베이스 엔터 프라이즈 관리자 권한 사용을 중지 있습니다 :

#!/bin/bash
#
# init file for starting and stopping Oracle 11g database using emctl
#
# chkconfig: 35 80 30
# description: Oracle database startup and shutdown script using Enterprise manager console
#

. /etc/rc.d/init.d/functions

ORACLE_BASE=/app/oracle
ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1
ORACLE_SID=dbhome_1

case "$1" in
   start)
      echo -n $"Starting Oracle Enterprise Manager Database Console:"
      su - oracle -c "$ORACLE_HOME/bin/emctl start dbconsole"
      echo "OK"
      ;;
   stop)
      echo -n $"Stopping Oracle Enterprise Manager Database Console:"
      su - oracle -c "$ORACLE_HOME/bin/emctl stop dbconsole"
      echo "OK"
      ;;
   *)
      echo $"Usage: $0 {start|stop}"
esac


I assume that you know how to install a new init script so I am not going to describe the process here. 내가 여기 있다고 가정 그 과정을 제가 설명 아니라가는 있도록 당신이 스크립트를 초기화의 새로운 설치 방법을 알아.

Please let me know if I left out anything important that you feel would of been of help to you in installing Oracle 11g on Fedora 13 and I will add it to this post. 제발 난 당신이 예상 느낌 것도 중요 탈락면 알려주 도움이 당신에게 페도라 13에 오라클 11g 설치에 있었 나는이 게시물에 추가됩니다.

3 comments to Installing Oracle 11g Release 2 on Fedora 13 페도라 13에 설치 오라클 11g 릴리즈 2 ~ 3 코멘트

  • Daniel 다니엘

    Hi Finnbarr 안녕 Finnbarr

    Very helpful description. 매우 도움 설명입니다. Thanks a lot. 감사합니다. Sole problem I had, was the SID, which was not consistent in your description. 유일한 문제는 내가, SID를, 당신의 설명에 일관성이 없다는이었다했다. Would be helpful to use orcl only. orcl에만 사용하는 도움이됩니다.

    And a another small problem I had was 그리고 또 다른 작은 문제는 내가 였어
    Error listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXRTPROC1521))) 오류에 대한 듣기 : (설명 = (주소 = (프로토콜 =하는 IPC) (키 = EXRTPROC1521)))
    TNS-12555: TNS:permission denied TNS - 12555가 : TNS : 승인 거부
    TNS-12560: TNS:protocol adapter error TNS - 12560 : TNS : 프로토콜 어댑터 오류
    TNS-00525: Insufficient privilege for operation TNS - 00525 : 작업에 대한 권한이 부족
    Linux Error: 1: Operation not permitted 리눅스 오류 : 1 : 작업은 허용되지

    Could solve this using this post: http://forums.oracle.com/forums/thread.jspa?threadID=931431, by replacing the KEY to EXRTPROC0 본 게시물을 사용하여 : http://forums.oracle.com/forums/thread.jspa?threadID=931431를 EXRTPROC0의 열쇠를 대체하여 해결할 수

    Final wish: Maybe, you can also describe how to install a new init script. 최종 수 : 아마, 당신은 또한 새로운 초기화 스크립트를 설치하는 방법을 설명하고자 수 있습니다. Then, your tutorial is complete in all terms :-) 그런 다음 자습서는 모든 측면에서 완전한 :-)입니다

  • Larry 래리

    Encountered another issue: 또 다른 문제가 발생했습니다 :

    Error in invoking target 'client_sharedlib' of makefile '/usr/local/applications/oracle/product/11.2.0/dbhome_1/rdbms/lib/ins_rdbms.mk'. 오류 'Makefile을'/ usr/local/applications/oracle/product/11.2.0/dbhome_1/rdbms/lib/ins_rdbms.mk의 client_sharedlib '을 목표'를 호출합니다. See '/usr/local/applications/oraInventory/logs/installActions2010-08-30_06-30-14PM.log' for details. 세부 정보보기 '/ usr/local/applications/oraInventory/logs/installActions2010-08-30_06-30-14PM.log'입니다.

    The file contains this reference to “client_sharedlib”: 파일이 참조가 포함되어 "client_sharedlib":
    client_sharedlib: client_sharedlib :
    $(GENCLNTSH) $ (GENCLNTSH)
    $(REMOVE_COMPATIBILITY_LINKS) $ (REMOVE_COMPATIBILITY_LINKS)
    $(CREATE_COMPATIBILITY_LINKS) $ (CREATE_COMPATIBILITY_LINKS)
    $(GENOCCISH) $ (GENOCCISH)
    $(GENAGTSH) $(LIBAGTSH) 1.0 $ (GENAGTSH) $ (LIBAGTSH) 1.0

    Any thoughts? 어떻게 생각하십니까?

  • Check that all the requisite packages are installed. 모든 필요한 패키지가 설치되어있는 확인합니다.
    Make sure that you have downloaded the correct version of Oracle for the platform you are on – x64 for x64 platform, etc. 당신이 플랫폼에 당신이 있습니다 - x64을 x64 플랫폼 등 오라클의 올바른 버전을 다운로드 설치되어 있는지 확인
    Check that ORACLE_HOME and ORACLE_SID are correctly specified. 그 ORACLE_HOME과 ORACLE_SID가 올바르게 지정됩니다 확인합니다.

Leave a Comment 코멘트를 남겨주세요