분류 전체보기(702)
-
관련 문의
https://code.djangoproject.com/query
2021.01.07 -
systemctl 에러 전체 글자 확인
journalctl -f systemctl start httpd 실행 journalctl 터미널창에서 에러 전체 글자 확인 systemctl status httpd.service 키보드 화살표로 이동
2021.01.06 -
module 내용 보기
strings mod_jk.so | grep -i mod_jk
2021.01.06 -
Django import export 참고자료
Getting started — django-import-export 2.5.1.dev0 documentation (django-import-export.readthedocs.io) resource를 통하여 컬럼 제어 가능 Getting started — django-import-export 2.5.1.dev0 documentation Importing It is also possible to enable data import via standard Django admin interface. To do this subclass ImportExportModelAdmin or use one of the available mixins, i.e. ImportMixin, or ImportExportMixin. C..
2021.01.06 -
아파치 설치
아파치 설치 yum -y install httpd 방화벽 오픈 firewall-cmd --permanent --add-service=http firewall-cmd --permanent --add-service=https firewall-cmd --reload 부딩시 자동 실행하도록 등록 systemctl enable httpd 아파치 시작 systemctl start httpd mod_jk 설치를 위한 패키지 설치 yum -y install gcc gcc-c++ httpd-devel Tomcat Connectors JK12 다운 wget -c 링크주소 압축풀기 tar zxvf 파일 설치된 디렉토리의 /native로 이동 ./configure --with-apxs=/usr/bin/apxs make mak..
2021.01.04 -
방화벽 셋팅(ver7 이상)
방화벽 상태 확인 : firewall-cmd --state > running or not running 방화벽 시작 or 종료 : systemctl start firewalld or systemctl stop firewalld 포트 추가 firewall-cmd --permanent --add-port=8080/tcp firewall-cmd --reload 서비스 추가 firewall-cmd --permanent --add-service=http firewall-cmd --permanent --add-service=https 설정 조회 :firewall-cmd --list-all target: default icmp-block-inversion: no interfaces: wlp2s0 sources: se..
2021.01.04