MySQL 1419 error - "You do not have the SUPER privilege and binary logging is enabled"
이 문제는 트리거 등을 다른 DB로 옮길때 발생한 에러입니다.
이를 해결하기 위해서는 log_bin_trust_function_creators 를 1로 바꾸어주면 됩니다.
mysql 에 root 로 접속하여 아래 내용을 쳐주시면 됩니다.
set global log_bin_trust_function_creators=1;
mysql을 restart 했을 때 설정값이 초기화 되신 분들은 아래 내용을 참조해주세요
2023.01.25 - [DB/mysql(mariaDB)] - Mysql Event Not Working
Mysql Event Not Working
mysql 이관작업 중 전의 서버에서 작동하던 이벤트가 작동을 안 하는 문제점이 있었습니다. 이는 mysql 버전이 달라 이벤트가 적동하도록 세팅을 해주어야 합니다. SET GLOBAL event_scheduler = ON; 여기서
jacorinne.tistory.com
Install/Upgrade Confluence 7.11+ fails with error - You do not have the SUPER privilege and binary logging is enabled | Confluen
Install/Upgrade Confluence 7.11+ fails with error - You do not have the SUPER privilege and binary logging is enabled
confluence.atlassian.com
MySQL 1419 error - "You do not have the SUPER privilege and binary logging is enabled" 해결 방법
www.lesstif.com