Error NoteLinux/Linux 일반2025/10/19 17:04by 깜빡쟁이dnf 또는 yum으로 한 단계씩 downgrade로 판을 낮추려다 보니 다음과 같은 오류를 만났다. # sudo dnf downgrade openssl-libs Last metadata expiration check: 0:04:36 ago on Sun 19 Oct 2025 11:46:26 AM KST. Error: Problem: problem with installed package openssl-fips-provider-1:3.5.1-2.el9.x86_64 - package openssl-fips-provider-1:3.5.1-2.el9.x86_64 from @System requires openssl-li...
Error NoteDNS/certbot2025/06/09 18:23by 깜빡쟁이snapd.service가 멈추어 있을 때 이런 오류가 나올 수 있다. # snap list error: cannot list snaps: cannot communicate with server: Get "http://localhost/v2/snaps": dial unix /run/snapd.socket: connect: no such file or directory snapd를 통하여 letsencrypt를 쓰고 있을 때에도 오류가 나올 수 있다. # certbot cannot snap-exec: cannot exec "/var/lib/snapd/snap/certbot/4482/bin/pytho...
Error NoteDNS/named2025/05/02 18:20by 깜빡쟁이# systemctl start named-chroot Job for named-chroot.service failed because the control process exited with error code. See "systemctl status named-chroot.service" and "journalctl -xeu named-chroot.service" for details. named-chroot 서비스가 문제가 있어서 시작되지 못했음을 알리고 있다. 아래는 "systemctl status named-chroot.service" 또는 "journalctl -xeu named-chroot.ser...
Error NotePHP2024/08/14 10:53by 깜빡쟁이PHP 8.1까지는 아래처럼 미리 선언하지 않은 클래스의 동적 요소를 쓸 수 있었다. class Class_name { public function __construct() { $this->id = null; } } 하지만 PHP 8.2에서는 위와 같이 미리 선언하지 않은 동적 요소(dynamic property)로서 클래스의 메소드에 쓰인 변수가 있으면, 아래처럼 비권장 경고문이 나온다. PHP Deprecated: Creation of dynamic property Class_name::$var is deprecated i...
Error NoteMySQL2024/08/13 17:09by 깜빡쟁이아래는 로그인 정보를 넣는 항목이 나오지 않고 제목만 나온 phpMyAdmin의 모습이다. 디버그 도구로 숨김 처리된 HTML 항목의 CSS 내용(display: none;)을 없애면 아래와 같은 화면을 볼 수 있다. There is a mismatch between HTTPS indicated on the server and client. This can lead to a non working phpMyAdmin or a security risk. Please fix your server configuration to indicate HTTPS pro...