Linux/Linux 일반2023/12/17 13:15by 깜빡쟁이# sudo yum update Killed # sudo dnf update Killed # sudo dnf module list php Killed yum이나 dnf를 실행할 때 모두 Killed라고 나오고 멈춘다면, 메모리가 모자라기 때문일 수 있다. # sudo sysctl vm.swappiness vm.swappiness = 0 sysctl로 vm.swappiness 값을 확인해 본다. 값이 0이면 가상 메모리를 쓰지 못하는 상태일 수 있으므로, 1 이상으로 높혀 준다. # sudo sysctl vm.swappiness=30 vm.swap...
Linux/SELinux2023/12/15 11:59by 깜빡쟁이Dec 15 02:21:34 MyServer systemd[1]: sshd.service: Main process exited, code=exited, status=255/EXCEPTION ░░ Subject: Unit process exited ░░ Defined-By: systemd ░░ Support: https://access.redhat.com/support ░░ ░░ An ExecStart= process belonging to unit sshd.service has exited. ░░ ░░ The process' exit code is 'exited' and its exit status is 255. Dec 15 0...
nginx2023/12/14 20:20by 깜빡쟁이# nginx -t nginx: [emerg] getpwnam("apache") failed in /etc/nginx/nginx.conf:1 nginx: configuration file /etc/nginx/nginx.conf test failed nginx를 깔면 nginx가 사용자로 등록된다. 그러므로 nginx.conf 파일에 nginx가 사용자로 들어가야 맞다. 그러나 apache를 깐 적이 없어도 nginx.conf에 apache가 사용자로 들어가 있기도 해서 이런 오류가 나올 수 있다. /etc/nginx/nginx.conf 파일을 열어...
DNS/certbot2023/12/06 16:27by 깜빡쟁이# certbot certonly --dns-rfc2136 --dns-rfc2136-credentials /etc/letsencrypt/rfc2136.ini --dns-rfc2136-propagation-seconds 60 -d example-abc.com -d *.example-abc.com usage: certbot [SUBCOMMAND] [options] [-d DOMAIN] [-d DOMAIN] ... Certbot can obtain and install HTTPS/TLS/SSL certificates. By default, it will attempt to use a webserver both for obtaining and insta...
Linux/SELinux2023/08/19 10:41by 깜빡쟁이-- Unit nginx.service has finished shutting down. Jan 15 01:32:43 test_server systemd[1]: Starting nginx - high performance web server... -- Subject: Unit nginx.service has begun start-up -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit nginx.service has begun starting up. Jan 15 01:32:43 test_server nginx[2131...
nginx2023/06/18 00:15by 깜빡쟁이nginx 1.25.1부터 listen 지시문에 http2이 들어가면 아래와 같은 경고문이 나올 수 있다. $ nginx -t nginx: [warn] the "listen ... http2" directive is deprecated, use the "http2" directive instead in /etc/nginx/conf.d/???.conf:2 nginx 새 판에서 listen 지시문에 들어가는 매개변수에 http2을 받아들이지 않을 것임을 예고하고 있다. 아직은 경고문이 나오고 작동은 하지만, 나중에 나오는 nginx 판...
웹에서 PHP 프로그램을 실행했을 때 "File not Found."라고 나온다면, nginx 설정에서 fastcgi_param 지시문에 SCRIPT_FILENAME를 잘못 지정했기 때문일 수 있다. nginx.conf 또는 nginx.conf에서 읽어들이는 설정 파일에 아래 내용을 새로 넣거나 고쳐 넣는다. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
Linux/SELinux2023/03/26 14:25by 깜빡쟁이-- Unit nginx.service has begun starting up. Jan 15 01:23:53 test_server nginx[20612]: nginx: [emerg] open() "/etc/nginx/???.conf" failed (13: Permission denied) in /etc/nginx/conf.d/#default.conf:8 Jan 15 01:23:53 test_server systemd[1]: nginx.service: control process exited, code=exited status=1 Jan 15 01:23:53 test_server systemd[1]: Failed to start nginx - high perf...