화요일, 4월 10, 2012

Ubuntu 리눅스 11.04(64비트)에 오라클 11gR2 설치


Install Oracle 11gR2 Ubuntu Linux 11.04 (64-bit)


Version C - update May 31, 2011
Author: Dude

Note: The following instructions work for Oracle 11gR2 11.2.0.1 (x86_64) and have also been tested with an Out-of-Place upgrade to 11.2.0.2. Just select the "ignore all" button at the prerequisite checks. It worked fine, including the Network Configuration and Database Upgrade Assistant.

If you go straight to 11.2.0.2 you may not need to install any 32-bit libraries, but I didn't try it.

Please note that Oracle 11gR2 on Ubuntu Linux is not supported by Oracle.

System setup and Prerequisites


The following assumes a default installation of Ubuntu 11.04, 64-bit, configured with access to the Internet. 

You will need Terminal command line and Console access to perform the setup tasks. To open a Terminal on the system console: 
Menu Applications => Accessories => Terminal


To enable remote ssh login and root access, type the following commands:
sudo apt-get install openssh-server
sudo passwd root


1. Required 64-bit and 32-bit software packages


The best way to install packages is to use the standard debian package manager.
Open a Terminal and enter the following commands to install required packages:
sudo apt-get install libaio1
sudo apt-get install libaio-dev
sudo apt-get install unixODBC
sudo apt-get install unixODBC-dev
sudo apt-get install expat
sudo apt-get install sysstat
sudo apt-get install libelf-dev
sudo apt-get install elfutils
sudo apt-get install lsb-cxx
sudo apt-get install pdksh
sudo sudo apt-get install libstdc++5
sudo sudo apt-get install ia32-libs


The following is not required, but will fix backspace and arrow keys in the vi-editor:
sudo apt-get install vim


2. Utilities and Libraries


The Oracle installation expects certain utilities and libraries in different locations: 
sudo ln -s /usr/bin/basename /bin/basename
sudo ln -s /usr/bin/awk /bin/awk
 
sudo ln -s /usr/lib/x86_64-linux-gnu/libc_nonshared.a /usr/lib64/ 
sudo ln -s /usr/lib/x86_64-linux-gnu/libpthread_nonshared.a /usr/lib64/ 
sudo ln -s /usr/lib/x86_64-linux-gnu/libstdc++.so.6 /usr/lib64/ 
 
sudo ln -s /lib/x86_64-linux-gnu/libgcc_s.so.1 /lib64


3. Kernel Parameters


Oracle requires the following additional kernel parameters:
Create a kernel parameter file:
sudo cat - >> /etc/sysctl.d/60-oracle.conf
 
(then cut & paste the following)
 
# Oracle 11gR2 kernel parameters
fs.aio-max-nr=1048576
fs.file-max=6815744
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
kernel.sem=250 32000 100 128
kernel.shmmax=2147483648
 
(then type Ctrl-d to write the file)
 
Note: kernel.shmmax = max possible value, e.g. size of physical RAM.
 
 
Verify: sudo cat /etc/sysctl.d/60-oracle.conf
 
Load new kernel parameters: 
 
sudo service procps start
 
Verify: sudo sysctl -q fs.aio-max-nr
-> fs.aio-max-nr = 1048576


4. Oracle Account and Directories


Type the following commands to create necessary Oracle accounts, groups and directories:
sudo groupadd oinstall
sudo groupadd dba
sudo useradd -m -g oinstall -G dba oracle
sudo usermod -s /bin/bash oracle
sudo passwd oracle
sudo groupadd nobody
sudo usermod -g nobody nobody
 
 
Verify: sudo id oracle
-> uid=1001(oracle) gid=1001(oinstall) groups=1001(oinstall),1002(dba)


Modify Oracle account shell limits:
Make a backup of the original file:
sudo cp /etc/security/limits.conf /etc/security/limits.conf.original
 
sudo cat - >> /etc/security/limits.conf
 
(then cut & paste the following)
 
#Oracle 11gR2 shell limits:
oracle soft nproc 2048
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
 
(then type Ctrl-d to write the file)
 
 
Verify: sudo cat /etc/security/limits.conf


Use an editor like vi or gedit and add the following to /etc/profile:
if [ "$USER" = oracle ]; then
   if [ $SHELL = "/bin/ksh" ]; then
      ulimit -p 16384
      ulimit -n 65536
   else
      ulimit -u 16384 -n 65536
   fi
fi

Create Oracle Directories, i.e.: /u01/app for Oracle software and /u02/oradata for database files:
sudo mkdir -p /u01/app/oracle
sudo mkdir -p /u01/app/oraInventory
sudo mkdir -p /u02/oradata
sudo chown oracle:oinstall /u01/app/oracle
sudo chown oracle:oinstall /u01/app/oraInventory
sudo chown oracle:oinstall /u02/oradata
sudo chmod 750 /u01/app/oracle
sudo chmod 750 /u01/app/oraInventory
sudo chmod 750 /u02/oradata

Oracle Installation


For convenience, you might want to allow the Oracle user to use the "sudo" command. Enter the following at the command prompt:
usermod -G admin oracle


1. Mount Oracle Installation DVD


Automount does not mount CD/DVD media with execute privileges.

You can mount the Oracle installation media by typing:
sudo mount -o loop,norock /dev/cdrom /media

Or, if you prefer a permament and more convenient solution:
sudo apt-get install autofs
 
Find the following line in /etc/auto.misc:
 
cd              -fstype=iso9660,ro,nosuid,nodev :/dev/cdrom
and add "exec" so it look like:
cd              -fstype=iso9660,ro,nosuid,nodev,exec :/dev/cdrom


2. Oracle Universal Installer (OUI)


The Oracle Universal Installer (OUI) requires X-windows. There are two fundamentally different ways to open a GUI application: 

- Remote Session
- Server Console

VNC/Remote Desktop: 
- Shares the screen of the Server Console.
- Applications are using the X-server on the server.

SSH with X-forwarding:
- Applications use the the X-server running on your client's desktop. 

In order to use SSH with X-Forwarding you will need to install a X-server on your workstation. You will find several commerical and free X11 software packages available. Some provide complex services. If you have to deal with MS-Windows you might find mobaxterm useful, which installs a single stand-alone application. It is available for free from http://mobaxterm.mobatek.net/en/. Apple Mac users can install Apple's X11, which is included on the standard OS installation DVD. As of Mac OSX Snow Leopard (10.6), Xterm is integrated with the standard Terminal application.

Using SSH with X-Forwarding:
ssh -X oracle@your_server_ip_address


The advantage of SSH is that network communication is encrypted and your Firewall will only need TCP port 22 open and it should also work with Network Address Translation (NAT), which is typical for private network configurations. SSH with X-Forwarding will automatically set appropriate environment variables - you should not set the DISPLAY variables manually. You also do not have to configure X-server access control. On the contrary, when you use the server console to display a GUI application other than user root, you can use the "xhost +" command as root to disable X-server access control.

You can also use VNC using an SSH tunnel:
ssh -A -L 5902:localhost:5902 oracle@your_server_ip_address
Then open a VNC session to localhost:5902.

Please check the Internet for information about how to setup VNC Server and where to obtain VNC client software.

To start the Oracle Installer:
/media/runInstaller

The installer might take several seconds to appear at your desktop.

Note: Select the "Ignore All" button at the Prerequisite Checks dialog.

You can source execute Oracle's oraenv utility to set your shell environment variables after the installation:
. /usr/local/bin/oraenv

Regards and best of luck.

Edited by: Dude on May 17, 2011: Added note about 11.2.0.2, various changes.

Edited by: Dude on May 25, 2011: Add oracle account to admin group instead of /etc/sudoers.

Edited by: Dude on May 31, 2011: Removed step to add software repository for ia32-libs.
It's not needed and causing subsequent update issues. I.e. Flashplugin.


화요일, 4월 03, 2012

Ubuntu 11.10에서 라이브러리 패스 추가하기

/etc/ld.so.conf.d/ 폴더로 이동
libc.conf파일에 새로운 라이브러리 패스를 추가
              or
새로운 설정 파일 생성하여 그곳에 새로운 라이브러리 패스를 추가

예)
1. config 파일 생성
$ sudo vi oracle-instant-client.conf
2. oracle instant client 라이브러리 위치 추가
3. 등록
$ sudo ldconfig -v

화요일, 1월 16, 2007

윈도우에서 공유폴더에 자동 로그인시 저장된 아이디 바꾸기

공유폴더 접근시 패스워드 저장으로 해 놓으면 다음번 접속시 아이디, 패스워드 요청없이 바로 접속한다. 그러나 단점은 다른 사용자로 접속하기가 불편하다는 점이다.

저장된 패스워드를 삭제하려면 아래와 같이한다.

C:\>net use /persistent:no

다른 아이디로 접속하려면

[현재 접속된 공유폴더 리스트 보기]
C:\>net use
상태 로컬 원격 네트워크
--------------------------------------------
\\192.168.10.30\공유폴더 Microsoft Windows 네트워크


[공유폴더 접속 해지]
C:\>net use \\192.168.10.30\공유폴더 /delete

[새로운 아이디로 접속]
net use \\192.168.10.30\공유폴더 * /user:jupiter

화요일, 12월 12, 2006

Bridge & Netfilter

kernel 2.6 에서는 브릿지를 설정하고 iptables로 브릿지에 필터링을 걸 수 있다. 그러나 MIPS kernel 2.4.x에서 브릿지로 설정했을때 iptables로 필터를 설정해도 적용되지 않는다.

Kernel 2.4.x에서는 brnf 패치를 해야 필터링이 적용된다.

brnf 패치 소스 : http://ebtables.sourceforge.net/

수요일, 12월 06, 2006

브릿지(bridge) 설정하기

구성

voip폰 <----------------->(eth0) linux[bridge](eth1) <-------------------------->스위치 허브 <------ 크로스케이블 utp 케이블 [예제] configure a network interface
$ ifconfig eth0 0.0.0.0 promisc up
$ ifconfig eth1 0.0.0.0 promisc up

Creating a bridge device

$brctl addbr voipbr

Adding devices to a bridge
$brctl addif voipbr eth0
$brctl addif voipbr eth1

$ifconfig voipbr up


자세한 정보는 다음 사이트를 참조
http://linux-net.osdl.org/index.php/Bridge

수요일, 8월 23, 2006

RPM 사용법

rpm 패키지 정보 및 패키지에 속한 파일 리스트 보기
# rpm -qpil kernel-2.6.17-1.2174_FC5.src.rpm
Name : kernel Relocations: (not relocatable)
Version : 2.6.17 Vendor: Red Hat, Inc.
Release : 1.2174_FC5 Build Date:
Install Date: (not installed) Build Host: hs20-bc2-3.build.redhat.com
Group : System Environment/Kernel Source RPM: (none)
Size : 47729179 License: GPLv2
Signature : DSA/SHA1, 2006년 08월 10일 (목) 오후 11시 25분 05초, Key ID b44269d04f2a6fd2
Packager : Red Hat, Inc.
Summary : Linux 커널 (Linux 운영 체제의 핵심)
Description :
The kernel package contains the Linux kernel (vmlinuz), the core of any
Linux operating system. The kernel handles the basic functions
of the operating system: memory allocation, process allocation, device
input and output, etc.
COPYING.modules
Config.mk
genkey
kernel-2.6.17-i586-smp.config
kernel-2.6.17-i586.config
kernel-2.6.17-i686-kdump.config
kernel-2.6.17-i686-smp.config
kernel-2.6.17-i686-xen.config
kernel-2.6.17-i686-xen0.config
kernel-2.6.17-i686-xenU.config
kernel-2.6.17-i686.config
kernel-2.6.17-ia64.config
kernel-2.6.17-ppc-smp.config
---생략---

-q와 함께 사용하는 옵션

<패키지명> :

<패키지명> 에 대한 질문을 수행한다.

-a :

모든 패키지에 대하여 질문을 수행한다.

-f <파일> :

<파일> 을 포함하는 패키지에 대한 질문을 한다.

-p <패키지 파일> :

패키지 파일에 대한 질문을 한다.

-i :

패키지에 대한 정보를 출력한다.

-l :
패키지에 속한 파일들을 보여준다.

금요일, 6월 30, 2006

리눅스 컴퓨터로 HTPC 꾸미기

보통 미디어센터하면 MS의 미디어센터를 생각합니다.
리눅스는 멀티미디어와는 거리가 멀꺼라고 대부분의 사람들이 생각합니다.
틀린말은 아닙니다. 하지만 멀티미디어와 거리가 멀기만 한것은 아닙니다. 리눅스에도 다양한(?) 소프트웨어가 나와 있습니다. MythTV, freevo등...

오늘은 freevo에 대해 알아보겠습니다.
아래 스크린샷을 보면 언뜻 미디어센터를 연상하게 하는군요.( 제가 너무 오래전에 미디어센터를 봐서 지금은 어떻게 바뀌었는지 잘 모르겠습니다.^^)

기본 기능은 TV보기, 영화보기, 음악듣기, 그림, 날씨 입니다.
TV 기능은 기본적으로 TV수신이 가능하고 아래 스크린샷에도 보실수 있듯이 TV가이드를 제공하여 원하는 채널을 선택해 볼수 있습니다. 녹화 기능도 제공하는데 윈도우용 소프트에서 제공하는 EPG(?) 예약녹화와 메뉴얼 녹화도 제공합니다.
영화보기는 컴퓨터에 장작된 DVD롬을 통해 DVD 타이틀을 플레이 할 수 있습니다.
음악듣기는 음악CD를 직접 플레이 할수도 있고 하드디스크에 저장된 음악파일(mp3 or ogg)을 플레이 할 수도 있습니다. 또한 플러그인으로 FM방송 청취도 가능합니다.



Main menu


TV Guide


Movie Browsing


Music Browsing


Playing Music


Image Browsing