vi /etc/hosts
127.0.0.1 localhost server01
192.168.56.101 server01.hadoop.com server01
192.168.56.102 server02.hadoop.com server02
192.168.56.103 server03.hadoop.com server03
vi /etc/sysconfig/network
HOSTNAME을 server01.hadoop.com으로 변경
service network restart
커널 파라미터 매개변수 / 방화벽
vi /etc/selinux/config
service iptables stop
chkconfig iptables off
chkconfig ip6tables off
sysctl -w vm.swappiness=100
vi /etc/sysctl.conf
sysctl.conf 제일 밑줄에 vm.swapiness=100을 입력
vi /etc/rc.local
echo never > /sys/kernel/mm/transparent_hugepage/enabled
echo never > /sys/kernel/mm/transparent_hugepage/defrag
vi /etc/security/limits.conf
root soft nofile 65536
root hard nofile 65536
* soft nofile 65536
* hard nofile 65536
root soft nproc 32768
root hard nproc 32768
* soft nproc 32768
* hard nproc 32768
까지 작성하고 reboot하면 완료
'Linux' 카테고리의 다른 글
Linux Server Ubuntu에서 SSH 접속 - 파일럿 서버 3 (0) | 2022.08.23 |
---|---|
CentOS 6 yum install 오류 (0) | 2022.08.23 |
Server Network 설정 - 파일럿 서버 2 (0) | 2022.08.23 |
VirtualBox(CentOS 6) Server 만들기 - 파일럿 서버 1 (0) | 2022.08.23 |
Ubuntu 22.04 Tensorflow GPU 환경 구축 (0) | 2022.08.01 |