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 |
Tags
- Backend
- 네이버싫어
- 작업물 #영상편집 #서브컬쳐
- php artisan
- vagrant
- 메모
- laravel
- ratchet
- 키워드 정리
- 개인공부
- error
- NGINX
- AWS
- 복습 #회사
- 보안
- php
- jquery
- MySQL
- 작업물
- centOS
- 에러해결
- 시벌이슈
- php-fpm
- centOS7
- 키워드
- 기타정리
- 카카오가고싶다
- linux #centos
- 일상
- 코딩테스트
Archives
- Today
- Total
목록centOS (3)
개발을 간바루Joy 하게

뭘 할려고하면 selinux가 끈질기게 괴롭힙니다. 빡치니 해제해줍시다. 에디터 /etc/sysconfig/selinux SELINUX=enforcing 부분을 SELINUX=disabled 로 변경해줍시다
프로그래밍/Linux
2020. 5. 20. 23:44

리눅스에서 yum을 이용할때 위와같은 에러가 나오는 경우가 있습니다. rm -rf /var/run/yum.pid yum.pid 삭제 후 yum 명령을 사용하면 다시 되는 것을 확인할 수 있습니다.
프로그래밍/Error
2020. 5. 20. 21:59

//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