반응형 IT/Linux42 CentOS 메일 보내기 - SMTP 설치 가이드 사전 준비 사항 SMTP 메일 서버 Port 오픈 [root@test ~]# firewall-cmd --zone=public --permanent --add-port=25/tcp success [root@test ~]# firewall-cmd --reload success SMTP 설치 1. sendmail 설치 여부 확인 [root@test ~]# rpm -qa |grep sendmail 2. sendmail 설치 sendmail : 메일 전송 에이전트 sendmail-cf : sendmail 설정 [root@test ~]# yum install -y sendmail sendmail-cf Loaded plugins: fastestmirror Loading mirror speeds from cached .. IT/Linux 2019. 12. 19. 더보기 ›› CentOS - mariadb root 패스워드 분실 재설정 [ CentOS 7 ] mariadb root 패스워드를 분실 했을때 처리방법 서비스 정지 -> mysql 안전모드 실행 -> 패스워드 변경 -> 연결테스트 -> 서비스 재시작 1. 서비스 정지 [root@localhost ~]# systemctl stop mariadb 2. mariadb 안전모드 실행 [root@localhost ~]# sudo /usr/bin/mysqld_safe --skip-grant & [1] 7845 [root@localhost mysql]# 170801 18:02:09 mysqld_safe Logging to '/var/log/mariadb/mysql-error.log'. 170801 18:02:09 mysqld_safe Starting mysqld daemon with da.. IT/Linux 2019. 6. 21. 더보기 ›› CentOS - firewalld 방화벽 오류 #systemctl start firewalld 방화벽 실행 시 아래와 같은 오류 문구가 나오면 [ 오류 문구 ] Failed to issue method call: Unit firewalld.service is masked. 아래 명령어를 입력해 주세요. # systemctl unmask firewalld Removed symlink /etc/systemd/system/firewalld.service 다시 실행 #systemctl start firewalld #systemctl start iptables IT/Linux 2019. 6. 19. 더보기 ›› CentOS - 리눅스 시간 동기화 리눅스(Linux) 계열 서버에서 시간 동기화하기 1. 현재 서버시간 먼저 Date를 입력하면 서버의 현재시간을 알 수 있습니다. 또는 http://time.navyism.com에서 서버 도매인을 입력해 시간을 확인할 수 있습니다. (Date를 입력하면 현재시간을 알 수 있습니다.) 2. 시간 동기화 #rdate -s time.bora.net 입력 여기서 'time.bora.net'은 동기화를 할 기준이 되는 서버입니다. 아래는 국내 타임서버 목록들입니다. time.bora.net 서버로 잘 안되는 경우 아래 목록으로 시도해보세요. 국내 타임서버(Time Server) 1) NTP Primary Time Server(Stratum 1 Server) - time2.kriss.re.kr - time.bora.. IT/Linux 2019. 6. 19. 더보기 ›› CentOS 7 - Apache 아파치 실행 상태 확인 아파치 명령어는 systemctl, httpd 또는 apachectl 을 사용합니다. 3가지 명령어중 쉬운 명령어 하나를 사용하시면 됩니다. 1. Apache 버전 확인 # httpd -v 2. Apache 상태 확인 # systemctl status httpd # service httpd status 3. Apache 시작 # systemctl start httpd # service httpd start # apachectl start 4. Apache 중지 # systemctl stop httpd # service httpd stop # apachectl stop 5. Apache 재시작 # systemctl restart httpd # service httpd restart # apachectl r.. IT/Linux 2019. 6. 19. 더보기 ›› 반응형 이전 1 ··· 5 6 7 8 9 다음