https://www.centos.org/modules/newbb/viewtopic.php?topic_id=29490

centos에서 booting시 sendmail 시작 과정에서 시간을 많이 잡아먹는 경우가 있다.
이때 /etc/hosts 파일이 도메인 형식을 가지지 않아서 그렇다고 한다.

※you must fully qualified domain name(FQDN)
http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch21_:_Configuring_Linux_Mail_Servers
위 링크에 나온 내용

The /etc/hosts File The /etc/hosts file also is used by DNS clients and also needs to be correctly configured. Here is a brief example of the first line you should expect to see in it:

127.0.0.1 bigboy.my-site.com localhost.localdomain localhost bigboy
The entry for 127.0.0.1 must always be followed by the fully qualified domain name (FQDN) of the server. In the case above it would be bigboy.my-site.com. Then you must have an entry for localhost and localhost.localdomain. Linux does not function properly if the 127.0.0.1 entry in /etc/hosts doesn't also include localhost and localhost.localdomain. Finally you can add any other aliases your host may have to the end of the line.


예를 들어 위 링크의 변경된 내용이다.

My current hosts file:

Quote:
# Do not remove the following line, or various programs # that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
10.3.0.1 main
10.3.0.2 alt1

Change /etc/hosts to:

127.0.0.1 localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
10.3.0.1 main.my-site.com main
10.3.0.2 alt1.my-site.com alt1

도메인은 그냥 형식적으로 아무거나 써줘도 된다. 테스트로 검증됨

아니면 sendmail 서비스를 꺼주는 방법도 생각해볼만 하다

'Knowledge > OS' 카테고리의 다른 글

RHEL 4 or 5 recommended kernel parameters  (0) 2013.08.12
find: Argument list too long 해결  (0) 2013.06.14
Linux bash profile 설정팁  (0) 2013.01.22
Linux 압축관련  (0) 2013.01.21
Hdd add on Centos 5 without rebooting  (0) 2013.01.11
Posted by neo-orcl
,

 

 PROCESS

ORACLE FILE I/O 

 Data files

Log

Archive 

Control 

CKPT

read/write

 

 

 

 DBWn

write

 

 

 

 LGWR

 

write

 

read/write 

 ARCn

 

read

write

read/write

 SERVER

read/write

read

write

read/write

 

Posted by neo-orcl
,

아주 상식적으로 생각해서 나는 rollback이라고 생각하고 있었다.
하지만 팀장님 말을 듣고 실제 테스트해보니.. commit이었다.

[oracle@centos5 ~]$ sqlplus scott/tiger
Connected to:
Oracle Database 10g Release 10.2.0.5.0 - 64bit Production

GLOBAL_NAME
----------------------------------------------------------------------------------------------------
scott@TESTDB

scott@TESTDB> select * from t;
        NO
----------
         1

scott@TESTDB> update t set no=2;
1 row updated.

scott@TESTDB> exit
Disconnected from Oracle Database 10g Release 10.2.0.5.0 - 64bit Production
[oracle@centos5 ~]$ sqlplus scott/tiger

Connected to:
Oracle Database 10g Release 10.2.0.5.0 - 64bit Production

GLOBAL_NAME
----------------------------------------------------------------------------------------------------
scott@TESTDB

scott@TESTDB> select * from t;
        NO
----------
         2

Oh my god!

'Knowledge > Oracle' 카테고리의 다른 글

Oracle Standard Edition 으로 RAC 구성시 제약사항  (0) 2013.05.21
Oracle process and Files  (0) 2013.03.18
ROW_CHAIN 해결 비교  (0) 2013.02.18
Control file dump 뜨기  (0) 2013.01.04
Opatch 사용법  (0) 2012.12.27
Posted by neo-orcl
,

 항목

절차 

작업중서비스 

수행시간 

추가공간필요 

인덱스재구성필요 

행이전 

테이블재구성(CTAS)

복잡

 불가능 

 빠름 

대상 테이블크기만큼 

REBUILD 필요

 해결 

테이블 MOVE

 단순 

불가능

빠름

대상 테이블 크기만큼

REBUILD 필요

해결

온라인세그먼트축소 

단순

가능

보통

공간 필요없음

NO REBUILD

 부분 해결

'Knowledge > Oracle' 카테고리의 다른 글

Oracle process and Files  (0) 2013.03.18
SQLplus에서 exit를 할 경우 rollback일까 commit일까?  (0) 2013.02.25
Control file dump 뜨기  (0) 2013.01.04
Opatch 사용법  (0) 2012.12.27
Oracle 8, 8i, 9i 기능비교표  (0) 2012.12.21
Posted by neo-orcl
,

alias sys='sqlplus / as sysdba'  (띄어쓰기 없음 조심)
10g이하 기준(11g는 덤프위치가 다름)
alias alert='vi $ORACLE_BASE/admin/$OACLE_SID/bdump/alert_$ORACLE_SID.log'
alias alertf='tail -f $ORACLE_BASE/admin/$OACLE_SID/bdump/alert_$ORACLE_SID.log'
alias bdump='cd $ORACLE_BASE/admin/$OACLE_SID/bdump'
공용
alias network='cd $ORACLE_HOME/network/admin'
alias lislog='tail -400 $ORACLE_HOME/network/log/listener.log | more'
alias lislogf='tail -f $ORACLE_HOME/network/log/listener.log | more'

PS1='[\d \t ] [\w] \n[\!] '
\d : 현재 날짜    \t : 현재 시간    \w : 현재 위치한 경로    \! : 마지막으로 사용한 명령어

Posted by neo-orcl
,

Linux 압축관련

Knowledge/OS 2013. 1. 21. 09:44

####################################################################################
##### 개요
####################################################################################
리눅스에는 파일을 한개로 합치는 유틸과
파일을 압축하는 유틸이 따로 있다.
####################################################################################
##### 파일 합치기 tar
####################################################################################
파일 묶을 시
tar cvf [만들파일명] [묶을파일들]

파일 풀을 시
tar xvf [파일명]

파일을 볼 시
tar tvf [파일명]
####################################################################################
##### gzip
####################################################################################
표준 기본 압축 방법

파일 압축
gzip [파일명]

파일 압축 해제
gzip -d [파일명]

파일 정보
gzip -l [파일명]

옵션들
-d 압축해제
-r 디렉토리 지정시 디렉토리에 포함된 모든 파일 압축
-c 원본파일을 보존하고 압축
####################################################################################
##### bzip2
####################################################################################
높은 압축률, 그러나 리소스를 많이 먹고 해제시 시간 많이 걸림

파일압축
bzip2 [파일명]

압축해제
bzip2 -d [파일명]

옵션들
-k 압축이나 해제시 원본파일 보존
-v 자세한정보출력
-s 속도는 느리지만 사용메모리양을 줄임
-f 압축또는 해제시 같은 이름의 파일있으면 덮어쓰기
####################################################################################
##### TAR 와 gzip/bzip2 같이 사용하기
####################################################################################
압축
tar cvfz
tar cvfj
해제
tar xvfz
tar xvfj

z= gzip
j= bzip2

'Knowledge > OS' 카테고리의 다른 글

레드헷 시리즈 부팅시 sendmail 서비스 시작 오래걸림 현상  (0) 2013.04.29
Linux bash profile 설정팁  (0) 2013.01.22
Hdd add on Centos 5 without rebooting  (0) 2013.01.11
cpio 파일 압축풀기  (0) 2013.01.04
Link 명령어  (0) 2013.01.04
Posted by neo-orcl
,

root로 진행.
# ls /sys/class/scsi_host 
host0 

host0이 아닌 host1 이 나왔다면 아래 내용도 host0 -> host1로 변경되어야 한다.

# echo "- - -" > /sys/class/scsi_host/host0/scan

'Knowledge > OS' 카테고리의 다른 글

Linux bash profile 설정팁  (0) 2013.01.22
Linux 압축관련  (0) 2013.01.21
cpio 파일 압축풀기  (0) 2013.01.04
Link 명령어  (0) 2013.01.04
Raw device mapping on over linux contos 5.2 ver  (0) 2012.12.27
Posted by neo-orcl
,

cpio -idmv < 10201_database_linux_x86_64.cpio

###AIX 에서는 아래처럼 실패함###

home_intra1:/oracle>cpio -idmv < 10gr2*.cpio

Out of phase!
cpio attempting to continue...
skipping 301202 bytes to get back in phase!
 One or more files lost and the previous file is possibly corrupt

Memory fault(coredump)

###옵션 c 추가하여 실행###

home_intra1:/oracle>cpio -idcmv < 10gr2*.cpio

 

'Knowledge > OS' 카테고리의 다른 글

Linux bash profile 설정팁  (0) 2013.01.22
Linux 압축관련  (0) 2013.01.21
Hdd add on Centos 5 without rebooting  (0) 2013.01.11
Link 명령어  (0) 2013.01.04
Raw device mapping on over linux contos 5.2 ver  (0) 2012.12.27
Posted by neo-orcl
,

sys@ORCL> alter session set tracefile_identifier='ctrl';
sys@ORCL> alter session set events 'immediate trace name controlf level 3';

Session altered.

sys@ORCL> oradebug setmypid;
Session altered.

sys@ORCL> oradebug dump controlf 3;
Statement processed.

sys@ORCL> oradebug tracefile_name;

이후 udump 디렉토리에서 확인

'Knowledge > Oracle' 카테고리의 다른 글

Oracle process and Files  (0) 2013.03.18
SQLplus에서 exit를 할 경우 rollback일까 commit일까?  (0) 2013.02.25
ROW_CHAIN 해결 비교  (0) 2013.02.18
Opatch 사용법  (0) 2012.12.27
Oracle 8, 8i, 9i 기능비교표  (0) 2012.12.21
Posted by neo-orcl
,

Link 명령어

Knowledge/OS 2013. 1. 4. 10:28

서버가 전문인 분들에게는 간단한거지만 나는 자주 사용하지 않기에 개념을 까먹고 있어서 ln에 대한 개념과 사용방법을 적어본다.(작성중)

'Knowledge > OS' 카테고리의 다른 글

Linux bash profile 설정팁  (0) 2013.01.22
Linux 압축관련  (0) 2013.01.21
Hdd add on Centos 5 without rebooting  (0) 2013.01.11
cpio 파일 압축풀기  (0) 2013.01.04
Raw device mapping on over linux contos 5.2 ver  (0) 2012.12.27
Posted by neo-orcl
,