Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- OTP 보정오류
- postfix
- ZipArchive 오류
- author style
- 갈레라
- 국민은행(기업)
- html 구성
- php 업로드 파일 삭제
- disk full
- disk 100% 사용
- OTP 오류
- php zip 모듈
- wsrep
- php 파일 삭제
- 복구
- error 1728
- nginx 1.12.0
- navicat
- user style
- nginx
- Laravel
- DOTCOM 마케팅 설계자 SECRET
- mysql.proc 오류
- MariaDB
- php excel
- 디스크 용량 확인
- php 7.3
- Oracle
- centos7
- CSS
Archives
- Today
- Total
목록centos7 (12)
Jehna :)
CentOS7 DNS 설치 및 설정
" CentOS7 DNS 설치 및 설정 " 1. DNS 설치 # yum -y install bind bind-libs bind-utils bind-chroot 2. /etc/named.conf 수정 options { version "Unknown"; // 보안을 위해 Unknown allow-transfer { none; }; // DNS서버를 1대만 운영할 경우 none allow-recursion { localhost; }; // localhost에서만 질의응답 listen-on port 53 { any; }; // 포트 접근 허용 listen-on-v6 port 53 { ::1; }; directory "/var/named"; dump-file "/var/named/data/cache_dump.db..
윌리/System 이것저것
2017. 3. 31. 11:44
[yum 에러] Another app is currently holding the yum lock; waiting for it to exit...
" CentOS 7 yum 에러 " Another app is currently holding the yum lock; waiting for it to exit... 정말 오랜만에 보는 yum 에러.. 이럴땐 yum process를 죽이거나 해당파일을 삭제하면 된다. 1. yum process kill # ps -ef | grep yum (프로세스 확인) # kill -9 15211 (프로세스 죽이기) 2. /var/run/yum.pid 삭제 # rm -rf /var/run/yum.pid
윌리/System 이것저것
2017. 3. 31. 10:24