gbmin's Tech Notes

서버 구축 및 유지보수, 클라우드 컴퓨팅, 네트워크 보안, IT 분야 기술 노트. :)

Tech Notes/Trouble Shooting 6

워드프레스 테마 데모 설치 에러 - Maximum execution time of 29 seconds exceeded

워드프레스 테마 데모를 설치할 때 에러가 발생되었다. Maximum execution time of 29 seconds exceeded in /www/wp-includes/class-wp-image-editor-imagick.php on line 454 해당 에러는 php 실행 시간을 초과했다는 에러다. 원인 실제로 서버의 php max_execution_time 설정이 짧아서 에러가 발생될 가능성이 있다. 하지만 서버의 실행 시간은 29초 이상이었고 심지어 600초로 설정되어 있었는데도 불구하고 동일한 에러가 발생하였다. 에러가 발생된 파일을 보면 이미지 처리를 하는 과정에 발생된 문제임을 알 수 있다. 워드프레스는 기본적으로 두 가지 이미지 처리 라이브러리를 지원한다: GD Library와 Imagi..

MSSQL 컬럼 수정 중 에러 발생 - Saving changes is not permitted

saving changes is not permitted. the changes you have made require the following tables to be dropped. 변경 내용을 저장 할 수 없습니다. 변경 내용을 적용하려면 다음 테이블을 삭제하고 다시 만들어야 합니다. 다시 만들 수 없는 테이블을 변경 했거나 [테이블을 다시 만들어야 하는 변경 내용 저장 사용 안 함] 옵션을 설정 했습니다. 원인 SQL Server Management Studio (SSMS) 에서 테이블을 ALTER TABLE 로 테이블을 수정 할때 발생되는 에러이다. "Prevent saving changes that require table re-creation" 옵션으로 인해 발생 되는데 이 옵션은 사용자가 테..

Spring Boot - Loading class com.mysql.jdbc.Driver'. This is deprecated.

Spring Boot - 디버깅 사례 1. Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class is com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary. MySQL JDBC 드라이버가 더 이상 사용되지 않는다는 것을 알려주는 경고다.'com.mysql.cj.jdbc.Driver'를 사용해야 한다. 해결하려면 코드에서 JDBC 드라이버를 로딩하는 부분을 찾아 'com.mysql.cj.jdbc.Driver'로 변경하면 된..

mysqld: File '/var/log/mariadb/binlog/bin.index' not found (Errcode: 13)

mariadb 구동오류 사례 /var/log/mariadb/mariadb.log 로그를 살펴보니 아래와 같은 에러가 발생했다. 230602 09:24:12 [ERROR] mysqld: File '/var/log/mariadb/binlog/bin.index' not found (Errcode: 13) 230602 09:24:12 [Note] /usr/libexec/mysqld (mysqld 5.5.68-MariaDB) starting as process 11534 ... 230602 09:24:12 [ERROR] Aborting 230602 09:24:12 [Note] /usr/libexec/mysqld: Shutdown complete 조치 방법 이 오류 메시지에서 볼 수 있는 것은 "binlog/bin..

Result Code: E_FAIL (0X80004005) Component: ConsoleWrap Interface: IConsole

VirtualBox (버추얼박스)에서 VM 추가 후 에러 발생 VM Name: Rocky Linux9 Not in a hypervisor partition (HVP=0) (VERR_NEM_NOT_AVAILABLE). AMD-V is disabled in the BIOS (or by the host OS) (VERR_SVM_DISABLED). Result Code: E_FAIL (0X80004005) Component: ConsoleWrap Interface: IConsole {6ac83d89-6ee7-4e33-8ae6-b257b2e81be8} 원인 CPU 가상화지원 옵션이 활성화가 안되어 발 생된 문제. 재부팅 후 바이오스에 진입하여 CPU 가상화 활성화해 줌. pc 재부팅 후 바이오스로 진입하면 Asu..