본문 바로가기
반응형

서버/Linux27

리눅스 에러확인 방법 journalctl | tail 리눅스 에러확인 방법 journalctl | tail # 아파치 실행시 오류발생하면 아래의 내용이 나타날경우 Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details. # 아래명령어 사용시 실행하면서 나타난 로그들을 볼수 있다. [root@test]# journalctl | tail 2022. 7. 23.
리눅스 아파치 Let's Encrypt무료 ssl 인증 방법 리눅스 아파치 Let's Encrypt무료 ssl 인증 방법 1.인증서 설치는 standalone 방식을 이용한다. certbot 설치 [root@main12 conf]# yum -y install certbot [root@main12 conf]# yum -y install python2-certbot-apache 2.우선 웹서버를 중단시킨다. 이는 80번 포트를 사용하지 않도록 하기 위함이다. # systemctl stop httpd 3.인증서를 생성한다. # certbot certonly --standalone -d {사이트명} 예)) # certbot certonly --standalone -d test.kr 첫 번째에서 서버 관리자 이메일 주소를 입력한다. 두 번째 는 약관 동의하는 것으로 Y를 .. 2022. 7. 15.
리눅스(Linux) 아파치 톰캣 연동(ajp방식) 리눅스(Linux) 아파치 톰캣 연동(ajp방식) service httpd start service httpd stop service httpd restart service httpd status service tomcat start service tomcat stop service tomcat restart service tomcat status 0.사전준비 *아파치(Apache), 톰캣(Tomcat), 자바홈(JAVA_HOME), 톰캣커넥터(Connectors)를 설치해야한다. ※sudo 명령어 먹통일 경우 sudo 명령어 설치해야한다※ mod_jk설치전 (gcc, gcc-c++, httpd-devel)을 설치해야한다. 설치하지 않았다면 설치 따로 설치 [root@test]# yum -y instal.. 2022. 5. 21.
리눅스 아파치, 톰캣 설치 리눅스 아파치, 톰캣 설치 ※sudo 명령어 먹통일 경우 sudo 명령어 설치해야한다 -CentSO 설치방법 yum install sudo ※설치 도중(Failed to download metadata for repo 'appstream': Cannot prepare internal mirrorlist: No URLs in mirrorlist)내용의 에러가 발생한다면 CentOS 8 EOS로 인해 CentOS 8 Mirror stie가 vault로 전화되어 Mirror site를 못 찾아 발생되는 문제이다 (https://www.centos.org/centos-linux-eol) 아래 명령어로 해결가능하다 [root@test]# sed -i 's/mirrorlist/#mirrorlist/g' /etc/y.. 2021. 12. 9.
반응형