[์ค์น ์ ์ค๋น] ํ๋ก์์ฝ์์คํ ์ ์ค์น์ ์ ์ค๋นํด์ผํ ๊ฒ
์ธํ๋ผ ์ด์ํ ๋ ์ฃผ์ํด์ผํ ์
root ๊ณ์ ์ฌ์ฉํ์ง ๋ชปํ๊ธฐ ๋๋ฌธ์ sudo๊ถํ์ ๋ถ์ฌ๋ฐ์ ๋ค๋ฅธ ๊ณ์ ์ ์ฌ์ฉํด์ ์ธํ๋ผ ๊ตฌ์ถ์ ์งํํ๋ค.
์ฌ์ฉํ ๊ณ์ ์์ฑ
# useradd test
๊ณ์ ๋น๋ฐ๋ฒํธ ์ง์
# passwd test
sudoers ์์ ํ์ฌ ํด๋น ๊ณ์ sudo ๊ถํ๊ณผ ํ๋จ์ ๊ฐ์ ๊ทธ๋ฃน๋ ๋ชจ๋ ์ปค๋งจ๋ ์ํ๊ฐ๋ฅํ ๋ถ๋ถ์ ์ฃผ์ ์ ๊ฑฐ
# vi /etc/sudoers
test ALL(=ALL) ALL(=ALL)
%wheel ~~
ํ๋ก์์ฝ์์คํ ๊ตฌ์ถํ ๋ ๊ณตํต์ ์ผ๋ก ํ์ํ ๋ถ๋ถ์ด ์๋ค.
1. ๋ฐฉํ๋ฒฝ
# systemctl disable firewalld
# systemctl stop firewalld
# vi /etc/selinux/config
SELINUX=disabled
ํ ์ฌ๋ถํ ํ๋ค.
2. install
$ sudo yum install ntp
$ sudo systemctl enable ntpd
$ sudo chkconfig ntpd on
3. ssh-key ์์ฑํ๊ธฐ
$ ssh-key
$ ssh-copy-key test@ip_address
4. ์๋ฐ ์ค์น
$ sudo yum install java-1.8.0-openjdk
5. DB ์ค์น
$ sudo yum install postgresql*
$ su - postgres
$ postgres-setup initdb
$ systemctl enable postresql.service
$ systemctl start postresql.service