github pages for personal
Troubles I faced while setting vnstat on linux.
리눅스에서 vnstat 구성 중 맞게 된 문제들.
$ yum install httpd
$ sudo apt-get install apache2
Configration file path
설정 파일 경로
/etc/httpd
If you use reverse proxy module, run the following command on the server to allow apache to make outbound connections.
만약 Reverse proxy 모듈을 사용할 경우, 아래 명령으로 apache가 외부 요청을 할 수 있도록 한다.
$ /usr/sbin/setsebool -P httpd_can_network_connect 1
Run apache http service
아파치 http 서비스 실행
###[Redhat]Centos 7
$ service httpd start
or
또는
$ systemctl start httpd
###[Devian]Ubuntu
$ service httpd start
Caution : Allow port access which apache uses.
주의 : 아파치가 사용하는 포트를 접근 허용해야 한다.