MySQL 3

[오류해결] benchbase "The table is full" 오류 해결

데이터베이스의 성능을 측정할 수 있는 benchbase를 사용할 때, 데이터를 로드하는 과정에서 가끔 이런 오류가 발생한다. 빨간 에러 .. 대충 읽어보면 데이터를 적재할 table이 full ~ 이다 라는 에러인데, 대부분 디스크 용량 부족인 경우가 많다. 이러한 경우에는 간단하게 rm /usr/local/mysql/data/*.log 명령어를 쳐주면~ log 관련 필요없는 내용들이 사라지면서 디스크 확보가 가능! 이렇게 삭제하고나서 다시 데이터 적재를 하면 문제없이 잘 돌아간다!

ERROR! 2025.05.19

[MySQL] 우분투 20.04 Mysql 5.7 설치 및 완전 삭제

MySQL 5.7 설치방법 https://bluexmas.tistory.com/1212#google_vignette 참고-cmake 만들 때 mysql57 수정할 것MySQL 완전 삭제 https://powernote.tistory.com/12 참고 [MySQL 완전 삭제] sudo apt-get remove --purge mysql* dpkg -l | grep mysql sudo rm -rf /etc/mysql /var/lib/mysql sudo rm -rf /var/log/mysql sudo rm -rf /var/log/mysql.* sudo rm /var/lib/dpkg/info/* sudo apt-get autoremove sudo apt-get autoclean sudo rm /var/lib/m..

STUDY 2024.09.11

[에러 해결?] MySQL // com.oltpbenchmark.api.loader loadstock - no operations allowed after statement closed.

tpcc 워크로드에서 필요한 데이터가 있어서 데이터 생성을 하는 중에 오류가 나타났다... com.oltpbenchmark.api.loader loadstock - no operations allowed after statement closed. 일단 이 에러에 대해서 전에 글을 쓴 적이 있다. https://ssensnote.tistory.com/10 [에러 해결] The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets요즘 GCP server에 연동해서 flag 값 튜닝하고 벤치마킹 돌리는 과정을 진행하고 있는데 (그 이유는 Cloud Database tuni..

ERROR! 2024.04.30