본문 바로가기

공부/리눅스

리눅스 서버 설치와 sshd포트 설정

반응형

레이드란?

http://blog.naver.com/capemay?Redirect=Log&logNo=40192616466

hp서버는 레이드가 2개로 나눠져 있음(메모리 용량을 반반으로 나눠서 비상을 대비하여 사용) 

우리는 레이드를 한개로 바꾸어서 한 레이드에 모든 메모리용량을 사용할 것임

회사에서는 레이드 0만 사용할 것임


1. 

vmware에서 install from메뉴에서

3번째 맨아래인 i will install the operating system later를 선택해야함


Install or upgrade an existing system을 선택하여 설치


Disc Found (Skip 선택)


what language would you like to use during the installation process?

english


select the appropriate keyboard for the system

U.S. English


what type of devices will your installation involve?

Basic Storage Devices


Storage Device Warning

yes, discard any data


Please name this computer. The hostname identifies the computer on a network

1)기본 설정 이용

2)Configure Network 

  Network Connections창에서 Wired안의 Name에 생긴 eth0을 더블 클릭

  Editing System eth0창이 생기고 창 위쪽의 Connect automatically을 클릭

  IPv4 Settings탭으로 움직여 Manual을 선택

  Addresses의 add를 누름

  Address, netmask, Gateway를 입력

  apply 선택


Please select the nearest city in your time zone

Asia/Shanghai


The root account is used for administering the system. Enter a password for the root user

namhau33


which type of installation would you like?

Use All Space


Writing storage configuration to disk

Write changes to disk


The default installation of CentOS is a minimum install. you can optionally select a different set of software now

Basic Server와 아래의 Customize now를 선택


2. 설치 옵션 보기

- base system - > networking tools (추가 옵션 필요없음)


- databases -> mysql database client, mysql database server (모든 옵션 선택)


- development -> additional development(추가 옵션 필요없음), development tools (아래의 옵션을 선택)

1) compat-gcc-34-c++-3.4.6-19.el6.x86_64 - c++ support for compatibility compiler

2) gcc-objc++-4.4.6-4.el6.x86_64 - objective-c++ support for gcc


- languages -> korean support, chinese support


3. sshd포트 변경하기

vi /etc/ssh/sshd_config

13번째 줄 (포트 22 -> 28010으로 바꾸기)

#를 삭제하고 port 28010으로 바꾸기


4. iptables에 변경한 포트를 허용합니다

iptables#] vi /etc/sysconfig/iptables


-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT <= 22를 28010으로 변경

-A INPUT -m state --state NEW -m tcp -p tcp --dport 28010 -j ACCEPT

 

 

5. 모든 설정이 완료되었다면 sshd 와 iptables를 재시작 합니다.

/etc/rc.d/init.d/sshd restart 

/etc/rc.d/init.d/iptables restart


반응형