레이블이 Apache인 게시물을 표시합니다. 모든 게시물 표시
레이블이 Apache인 게시물을 표시합니다. 모든 게시물 표시

2016년 1월 22일 금요일

[HTTP Server] Apache log file Management

Learn about the access_log, error_log file to reduce file size.


# Reduce the file size without rebooting the Apache daemon
[root@www01 ]# cat /dev/null > error_log
[root@www01 ]# cat /dev/null > access_log

# If you have to restart the Apache daemon
[root@www01 ]# rm -rf error_log
[root@www01 ]# rm -rf aceess_log

* Return the capacity was in use, only you need to restart Apache daemon on your system.



2015년 8월 10일 월요일

[Linux] DocumentRoot Directory error case by Apache 2.2 & CentOS 6.5

[root@localhost ~]# vi httpd.conf
................
#DocumentRoot  = "/var/www/html"
DocumentRoot = "/var/www/newDiretory"

DocumentRoot 설정 위치에서 변경 후 재시작 하는 경우 Directory 에러 날 때는 다음과 같이 내용을 추가적으로 수정

[root@localhost ~]# chcon -R -t httpd_user_content_t /var/www/newDiretory

#selinux 의 기능을 OFF

[root@localhost ~]# vi /etc/selinux/config

# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#       enforcing - SELinux security policy is enforced.
#       permissive - SELinux prints warnings instead of enforcing.
#       disabled - SELinux is fully disabled.
#SELINUX=enforcing
SELINUX=disabled  # 기능 작동을 중단합니다

# SELINUXTYPE= type of policy in use. Possible values are:
#       targeted - Only targeted network daemons are protected.
#       strict - Full SELinux protection.
SELINUXTYPE=targeted


언제 부터 였던가 생각해보니 아르바이트 겸 외부 컨설팅을 의뢰 받고 맥북 프로를 처음 써봤을 때 부터 였던 것 같다. 지금은 거의 대부분의 작업을 맥으로 작업을 하다 보니 윈도우에서만 실행되는 일부 프로그램들 때문과 회사 내부 ERP프로그램이 윈도우 ...