일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 램가스초월
- jQuery
- OpenWrt
- mysql
- 자바스크립트
- PHP-FPM
- 티스토리
- KB증권
- KB국민카드
- 라즈베리파이2
- 가상서버호스팅
- 리눅스
- SKT
- Apache
- 알뜰폰
- 알리익스프레스
- 스톤에이지
- 복현오거리
- 시놀로지
- 킹북이초월
- ConoHa
- 아파치
- 윈도우10
- Rocky
- centos
- iptime
- proxmox
- 소비전력
- php
- 보르비스초월
- Today
- Total
목록아파치 (6)
맛집 여행 캠핑 일상 생활
아파치 설정 값 중에 Timeout 을 5초로 했더니 워드프레스에서 부하가 좀 걸리는 작업은 대부분 아래와 같은 에러를 뿜으며 실행이 제대로 안되네요~Service UnavailableThe server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.위 메시지는 웹브라우저에서 보여지는 화면입니다.그리고 아래는 아파치 에러로그입니다.[Wed Oct 16 08:05:45.859829 2024] [proxy_fcgi:error] [pid 3822] (70007)The timeout specified has expired: [client 192.1..
시놀로지 아파치에서 ExpiresActive 기능이 디폴트가 아니군요~ /var/log/httpd/apache24-error_log 파일에 보면 ".htaccess: Invalid command 'ExpiresActive', perhaps misspelled or defined by a module not included in the server configuration" 이렇게 에러 로그가 남습니다. ExpiresActive on ExpiresByType text/css "access plus 1 month" 위와 같은 기능을 사용하려면 /usr/local/etc/apache24/conf/httpd24.conf 파일에 아래의 부분을 추가하여 저장합니다. LoadModule expires_module m..
[리눅스] 아파치 에러 AH00035 아파치 설치 후 아래와 같은 메시지가 뜨면 퍼미션 오류인데 SELINUX 설정을 바꾸면 해결이 됩니다.[Thu Nov 22 11:14:18.334138 2018] [core:error] [pid 12090] (13)Permission denied: [client 192.168.1.4:57003] AH00035: access to /index.php denied (filesystem path '/home/homepage/www/index.php') because search permissions are missing on a component of the path # vi /etc/selinux/config#SELINUX=enforcingSELINUX=disabled ..
[아파치] AH00558 httpd ServerName 아파치에서 아래와 같은 메시지가 나오면 httpd.conf 파일에 ServerName 이 누락된 경우입니다.[root@vps conf.d]# apachectl configtestAH00558: httpd: Could not reliably determine the server's fully qualified domain name, using ::1. Set the 'ServerName' directive globally to suppress this messageSyntax OK ServerName localhost이렇게라도 넣은 다음에 재시작 해보세요~
[리눅스] 아파치 에러로그 authz_core AH01630 Apache 2.2.x 버전에서 2.4.x 로 버전을 올린 후 아래와 같은 에러가 발생하면 설정파일을 수정하여야 합니다.[authz_core:error] [pid 1250] [client 접속아이피:62401] AH01630: client denied by server configuration:/home/유저계정/www/noindex, referer: http://www.example.com/noindex/ 해당 httpd.conf 파일을 열어서 아래 내용을 추가해주면 됩니다. # Apache 2.4 Require all granted 2.2.x 버전과 다른점이네요~
아파치 사용자계정 권한 모듈 웹호스팅시에 사용자계정으로 파일 생성 권한을 줘야 하는 경우가 있다.apache 권한으로 파일을 생성하게 되면 매번 퍼미션 777로 디렉토리를 생성해야되는 번거로움이 있다.이럴때 mod_ruid 모듈을 이용하면 된다. 1. mod_ruid 모듈 설치wget -O mod_ruid2-0.9.8.tar.bz2 http://sourceforge.net/projects/mod-ruid/files/latest/downloadtar xvjf mod_ruid2-0.9.8.tar.bz2cd mod_ruid2-0.9.8apxs -a -i -l cap -c mod_ruid2.c 2. 아파치 환경설정 ... RMode config RUidGid user1 group1 3. 테스트