Posted
Filed under 프로그래밍
모든 작업 root에서 진행
기존에 swap없는 상태에서 시작

fallocate -l 8G /swapfile
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
sysctl vm.swappiness=10


vi /etc/sysctl.conf

맨 아래에 추가 (나는 값을 20정도로 주고 있다)
vm.swappiness=10


2023/04/24 11:33 2023/04/24 11:33
Posted
Filed under 프로그래밍/PHP
add-apt-repository ppa:ondrej/php
apt update
apt install php8.2-fpm



2023/04/24 11:07 2023/04/24 11:07
Posted
Filed under 프로그래밍
dump뜬걸 올리려고 하니 오류가 난다.

#1227 - access denied; you need (at least one of) the super privilege(s) for this operation

create하는곳에서 definer 부분을 아에 삭제한다.

2023/04/19 16:02 2023/04/19 16:02
Posted
Filed under 프로그래밍
dump뜬걸 올리려고 했더니 오류가 난다.

#1118 - row size too large (> 8126). changing some columns to text or blob or using row_format=dynamic or row_format=compressed may help. in current row format, blob prefix of 768 bytes is stored inline.

테이블만드는 곳에서 ROW_FORMAT 값을 DYNAMIC 또는 COMPRESSED 으로 변경해준다.

2023/04/19 16:01 2023/04/19 16:01
Posted
Filed under 프로그래밍
dump뜬걸 올리려고 했더니 오류가 난다.

#1419 - you do not have the super privilege and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)

설정에서 log_bin_trust_function_creators을 ON 해준다.

2023/04/19 15:59 2023/04/19 15:59