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 | 29 | 30 | 31 |
Tags
- jquery
- centOS7
- 작업물 #영상편집 #서브컬쳐
- centOS
- 키워드
- php artisan
- 코딩테스트
- php
- vagrant
- 키워드 정리
- 개인공부
- 시벌이슈
- 작업물
- 카카오가고싶다
- 네이버싫어
- php-fpm
- 메모
- MySQL
- ratchet
- 기타정리
- 보안
- laravel
- AWS
- 에러해결
- 복습 #회사
- Backend
- linux #centos
- error
- 일상
- NGINX
Archives
- Today
- Total
목록centOS (3)
개발을 간바루Joy 하게
[Centos7] 줫같은 SElinux 해제
뭘 할려고하면 selinux가 끈질기게 괴롭힙니다. 빡치니 해제해줍시다. 에디터 /etc/sysconfig/selinux SELINUX=enforcing 부분을 SELINUX=disabled 로 변경해줍시다
프로그래밍/Linux
2020. 5. 20. 23:44
[Centos]Another app is currently holding the yum lock
리눅스에서 yum을 이용할때 위와같은 에러가 나오는 경우가 있습니다. rm -rf /var/run/yum.pid yum.pid 삭제 후 yum 명령을 사용하면 다시 되는 것을 확인할 수 있습니다.
프로그래밍/Error
2020. 5. 20. 21:59
Centos7 Nginx 설정
//nginx 설치 확인 nginx -v nginx 설치가 되어있는지 확인합니다. //nginx 설정 vi /etc/nginx/conf.d/default.conf server { listen 80; server_name server_domain_name_or_IP; access_log /var/log/nginx/[로그이름].access.log; error_log /var/log/nginx/[로그이름].error.log; root /usr/share/nginx/html; index index.php index.html index.htm; location / { try_files $uri $uri/ =404; } error_page 404 /404.html; error_page 500 502 503 504 ..
프로그래밍/Linux
2020. 5. 11. 23:21