이 블로그에 작성을 하려고 했는데 아직 정비가 덜 됬을 때라 네이버 블로그쪽에 포스팅을 했어서 내용을 다시 정리해본다.
환경은 우분투 20.04 + nginx + mysql8 + php-fpm 조합으로 워드프레스 직접 설치시 오류가 발생하여 로그를 확인해보니 다음과 같은 오류가 발생했다.
[error] 15515#15515: *7 FastCGI sent in stderr: "PHP message: WordPress database error Table 'wordpress.wp_options' doesn't exist for query
여기저기 검색을 해봐도 딱히 자료가 없어서 다음 주소에서 공식 문서를 확인해보았다.
Before You Install
Before installing WordPress, you need to check that your web hosting provider fulfills the necessary software and conditions. Also, you must have access to the server and some tools. Requirements o…
흐음.. 현재 설치된 버전은 요건에 충족하니 문제가 없어보이는데.. 일단 DB버전이 좀 의심이 가서 mariaDB로 변경해보았다.
# mysql 삭제
apt-get autoremove -y mysql* --purge
#mariaDB 설치
apt-get install mariadb-server
22년 9월 현재 시점 기준으로 mariadb 10.3이 설치 되었다.
이후 다시 워드프레스 초기화를 해보니 해당 오류 없이 잘 설치되었다. 이후 데이터베이스에 접속해 확인해보니 wp_options를 포함한 모든 테이블이 생성되었다.
참고