반응형

 

Oracle Database 10gR2, 11gR2 Installation On Enterprise Linux 4.0 (오라클 설치) [메인 참조 - http://gseducation.blog.me/20093164977]

 

윈도우 7에 VMWARE를 설치하고 리눅스를 INSTALL하였다. 문제는 인터넷이 안된다는 것이 없다.

현재 나의 상황은 아래와 같다.

  1. 상황 분석

  1) LG+ 티비와 인터넷을 함께 사용하고 있다.

  2) 위와 같이 공유 설정이 되어 있다. (DHCP)

  3) VMWARE를 설치하고 리눅스를 설치하였다. IP 설정작업은 아래와 같이 진행하였다.

 

 

 

 

 

 

2. 리눅스 상황을 아래와 같이 맞추어 주었다.

1) Telnet과 FTP를 사용할 수 있도록 아래와 같이 파일의 내용을 수정하고, xinetd을 재시작한다.

    [root@ora10gr2 ~]# su - root
    [root@ora10gr2 ~]# vi /etc/xinetd.d/telnet : disable = no로 수정

 


    [root@ora10gr2 xinetd.d]# vi /etc/xinetd.d/krb5-telnet  : disable = no로 수정 : 혹시 telnet이 없다면 이렇게 하세요.
    [root@ora10gr2 xinetd.d]# vi /etc/xinetd.d/gssftp         : disable = no로 수정
                                                               server_args = -l -a 부분의 -a를 제거

 

 

    [root@ora10gr2 xinetd.d]# cd /etc/rc.d/init.d
    [root@ora10gr2 init.d]# ./xinetd restart
    (혹은 [root@ora10gr2 init.d]# service xinetd restart)
    [root@ora10gr2 ~]# cd
 
2) 호스트명 확인 및 설정

(가) /etc/hosts 파일과 /etc/sysconfig/network 파일의 내용을 다음과 같이 설정한다.
 
[root@ora10gr2 ~]# vi /etc/hosts
#127.0.0.1         localhost
192.168.0.10    ora10gr2.gsedu.com      ora10gr2        localhost.localdomain localhost

 

[root@ora10gr2 ~]# vi /etc/sysconfig/network

 

(나) 변경
os] hostname [호스트 이름]

(다) 확인
os] hostname

os] service network restart

[참조] http://cafe.naver.com/ticenter/541

 

[if it still not work, then iptables is blocking that, you need to flush iptables or turn off service like]

os] iptables -F
os] iptables -X

os] /etc/init.d/xinetd stop

[참조] http://www.webhostingtalk.com/showthread.php?t=897301

반응형