본문 바로가기
반응형

분류 전체보기179

리눅스 에러확인 방법 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.
제이쿼리(jQuery) 특정문자 찾기(:contains()) 제이쿼리(jQuery) 특정문자 찾기(:contains()) :contains() -특정 문자열을 포함한 요소를 선택하는 선택자 $(':contains(text)'); -사용예 -주의사항 : 문자열 포함 여부를 따질 때 대소문자를 구문한다. if($(':contains("고구마") + td > input:checkbox[name=resvTimeArr]:checked').length == 0) { alert('고구마가 없습니다.'); return false; } -응용방법 -고구마라는 문자를 포함한 태그의 형제 td태그의 name=resvTimeArr가진 checbox중에 체크한 개수를 표시한다. 2022. 5. 6.
반응형