0. 환경 설정

     -설치 OS: Oracle Linux 7.1

     -FileSystem:

          .총 용량: 100GB

          .기본 파일 FileSystme 할당(자동 생성)

          ./Tmax 에 50GB 할당

          .나머지는 /에 할당

     -IP: 10.10.10.10 으로 설정(가정)

     -SubnetMask: 255.255.255.0

     -Gateway: 10.10.10.1

     -DNS: 10.80.1.1

     -Hostname: myhostname

     -서비스 계정/그룹: tmax/was

 

1. 이미지 넣기

     -서버 스펙에 따라 Client 만든 후 부팅
     -CD/DVD 에 이미지 넣기
     -로컬에 있는 이미지 삽입 후 OS 인식 못한다면 데이터스토어에 옮긴 후, Client 다시 만들어서 이미지 삽입

 

2. OS 설치

     Installation summary

          -Date&Time: 한국
          -keyboard: US
          -Language Support: English     //한국 설정 안하는 게 기본

          -Software Selection

               Server with GUI     -> FTP Server, KDE, Print Server 만 체크 후 Done

          -Partition

               할당한 Disk 선택
               I will configure partitioning 선택

               Click here to create them automatically 클릭
               /home 삭제 (- 버튼)
               서버에서 사용할 DATA 파티션 생성 (ex4)
               ex) /Tmax 50GiB, LVM, ex4

          -Network 설정

               기본 ens -> Configure

                    IPv4 Settings

                    Method: Manual
                    Address 추가(IP: 10.10.10.10. / SubnetMask: 255.255.255.0 / Gateway: 10.10.10.1)
                    DNS서버 IP 입력 (10.80.1.1)

          -root 비밀번호 설정

          

3. 초기 설정

     -License 동의

     -Unbreakable 뜨면 나중에.

 

 

4. 환경 설정

     (1)hostname 설정

          -#vi /etc/hostname

                    새로운 hostname 등록(myhostname)

          -#vi /etc/sysconfig/network

NETWORKING=yes
NETWORKING_IPV6=no
HOSTNAME=새 호스트네임

          입력

          -#vi /etc/hosts

          하단에 다음을 추가

10.10.10.10     myhostname

          -재부팅

 

     (2)방화벽 해제

          -#systemctl status firewalld     //현재 방화벽이 실행 중인지 확인

          -#service firewalld stop

          -#service disable firewalld

          -#iptables-save

          -#systemctl stop firewalld       //iptables 멈추기
          -#systemctl disable firewalld //서버 재기동 후에도 방화벽 해제 유지


     (3)SELINUX 해제

          -#vi /etc/sysconfig/selinux

          SELINUX=disabled 로 변경


     (4)인터넷 자동 연결 설정

  -리눅스 설정에서 Auto 연결 설정 체크


     (5)ftp 설치 및 설정

          -#yum -y install vsftpd

          -#cd /etc/vsftpd

          -#vi ftpusers

               root 주석처리     //#root

          -#vi user_list

               root 주석처리     //#root

          -#vi vsftpd.conf

               anonymous_enable=NO로 변경

          -재기동 후 서비스 자동 시작

               #chkconfig vsftpd on
               #systemctl enable vsftpd.service

          -ftp 실행

               #service vsftpd start

          -ftp 클라이언트 설치 (ftp 프로토콜과는 별도로 클라이언트 설치 필요)

               #yum install -y ftp

  
          (6)user 및 group 설정

  -계정 생성

#adduser tmax

  -그룹 생성

#groupadd was

          -그룹에 계정 추가

        #usermod -g was tmax //was 그룹에 tmax 추가

          (7)bash_profile 파일 설정

                    -/Tmax 에서 vi .bash_profile

# .bash_profile

PS1=[`hostname`:'$PWD#']

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin

export PATH

 

OS 설치는 이와 같이 수행하면 되며, Jeus, Webtob 설치 방법은 다음 글에서 정리한다.

 

+ Recent posts