네이버클라우드202 Linux 9일차 (2023-05-04) 네이버클라우드서버 설정하기 - mail 보내기 mail 보내기 sendmail 설치 root@ysy1:~# apt -y install sendmail sendmail 시작 root@ysy1:~# systemctl start sendmail root@ysy1:~# ps -ef | grep sendmail root 4077 1 0 00:42 ? 00:00:00 sendmail: MTA: accepting connections root 5063 2146 0 00:45 pts/0 00:00:00 grep --color=auto sendmail sendmail 시작 root@ysy1:~# hostname --> 원래 호스트네임 ysy1 root@ysy1:~# hostname nc.kr --> 호스트네임을 nc.kr 로 변경하기 root@ysy1:~# host.. 2023. 5. 4. Linux 9일차 (2023-05-04) 네이버클라우드 서버 설정하기 - bind 설정 및 확인 bind 설정 및 확인 bind9 설치 root@ysy:~# ai bind9 --> bind9 설치 root@ysy:~# systemctl start bind9 --> bind9 시작 ** 주의 : 네이버클라우드 서버에서 할 경우 systemctl start named 는 에러 발생 root@ysy:/etc/bind# systemctl restart named Failed to restart named.service: Unit named.service not found. named.conf.options 파일 수정 root@ysy:~# vi named.conf.options /etc/bind/named.conf.default-zones root@ysy:~# cd /etc/bind root@ysy:/etc.. 2023. 5. 4. Linux 9일차 (2023-05-04) 네이버클라우드 서버 설정하기 - Tomcat 설정 및 확인 Tomcat 설정 및 확인 Tomcat 설치 root@ysy:~# ai tomcat9 tomcat9-examples tomcat9-admin tomcat9-docs Tomcat 실행 root@ysy:~# systemctl start tomcat9 root@ysy:~# ps -ef | grep tomcat tomcat 32730 1 1 17:28 ? 00:00:14 /usr/lib/jvm/default-java/bin/java -Djava.util.logging.config.file=/var/lib/tomcat9/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.awt.headless.. 2023. 5. 4. Linux 9일차 (2023-05-04) 네이버클라우드 서버 설정하기 - apache2 설정 및 확인 php 설치 및 php 파일 생성 후 확인 root@ysy:~# ai php root@ysy:~# systemctl restart tomcat9 root@ysy:~# systemctl restart apache2 root@ysy:~# ai php php-curl php-gd php-intl php-mbstring php-soap php-xml \ > php-xmlrpc php-zip php-mysql apache2 mysql-server root@ysy:~# cd /var/www/html root@ysy:/var/www/html# wget https://ko.wordpress.org/latest-ko_KR.tar.gz --> wget 이용한 워드프레스 다운로드 root@ysy:/var/www/html# .. 2023. 5. 4. Linux 9일차 (2023-05-04) 네이버클라우드서버 설정하기 - mysql 계정 만들기 mysql 계정 만들기 root 에서 사용자 생성 root@ysy:~# useradd sy root@ysy:~# passwd sy New password: BAD PASSWORD: it is WAY too short BAD PASSWORD: is a palindrome Retype new password: passwd: password updated successfully root 에서 mysql 설정 root@ysy:~# mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.41-0ubuntu0.18.04.1 (Ubuntu) Copyright (c) 200.. 2023. 5. 4. Linux 9일차 (2023-05-04) 네이버클라우드 서버 설정하기 - 사용자 용량제한 /etc/fstab root@ysy:~# vi /etc/fstab ㄴ 네이버 클라우드는 /home 디렉터리가 없으므로 / 로 지정 quota 설정 ㄴ quota 설치 및 사용자 생성 root@ysy:~# apt install quota root@ysy:~# groupadd NC --> 그룹 생성 root@ysy:~# useradd -G NC nc1 --> 그룹에 사용자 생성 root@ysy:~# useradd -G NC nc2 --> 그룹에 사용자 생성 root@ysy:~# useradd -G NC nc3 --> 그룹에 사용자 생성 root@ysy:~# tail -5 /etc/group --> 생성된 사용자 확인 tomcat:x:999: NC:x:1001:nc1,nc2,nc3 nc1:x:1002: nc2.. 2023. 5. 4. 이전 1 ··· 27 28 29 30 31 32 33 34 다음