Linux 488

Unable to verify certificate 'Server-Cert'. Add "NSSEnforceValidCerts off" to nss.conf so the server can start until the problem can be resolved.

Unable to verify certificate 'Server-Cert'. Add "NSSEnforceValidCerts off" to nss.conf so the server can start until the problem can be resolved. 위와 같이 에러가 발생 된다면 nss 인증을 off 해주면 된다. vi /etc/httpd/conf.d/nss.conf NSSEnforceValidCerts off 추가 해주고 service httpd restart 해주면 된다. 아니면 인증서를 갱신해주거나

Linux 2020.08.24

ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails

ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails mysql db 삭제시 위와 같이 에러가 발생 한다면 SET foreign_key_checks = 0; 작업해주고 삭제 하면 정상 적으로 삭제 된다. mysql> drop table AO_54307E_SERVICEDESK; ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails mysql> SET foreign_key_checks = 0; Query OK, 0 rows affected (0.00 sec) mysql> drop table AO_54..

Linux 2020.06.11

centos8 grub2 change default kernel

centos8 default kernel 변경 하기. # uname -a Linux test 4.18.0-147.8.1.el8_1.x86_64 #1 SMP Thu Apr 9 13:49:54 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux 현재 버전은 4.18.0-147.8.1.el8_1.x86_64 이다. 4.18.0-147.el8.x86_64 로 변경해보자. default kernel 버전 확인 # grubby --default-kernel /boot/vmlinuz-4.18.0-147.8.1.el8_1.x86_64 설치되어 있는 커널 버전 확인 # ls -al /boot/vmlinuz-* -rwxr-xr-x. 1 root root 8106744 May 7 04:55 /boot/v..

Linux 2020.05.15
728x90