320x100
mysql 계정 생성 할때
mysq 8.x 이하 버전에서는
grant all privileges on confluence.* to confluence@localhost identified by '12345qwert@' with grant option;
이렇게 명령어를 적었지만 이렇게 적으면
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'identified by '12345qwert' with grant option' at line 1
에러가 뜬다.
mysql 8.x 버전 이상일때는
create user confluence@'%' identified by '12345qwert';
grant all privileges on confluence.* to confluence@'%';
flush privileges;
이렇게 해주면 된다.
320x100
'Linux' 카테고리의 다른 글
gem updateUpdating installed gemsUpdating bigdecimalERROR: Error installing (1) | 2024.09.18 |
---|---|
iptables install for rocky 8.x (0) | 2024.09.15 |
bitnami redmine 4.2.1-3 테마 변경 (0) | 2024.08.25 |
ActionView::Template::Error (undefined method `default_issue_query_id' for #<Project id (0) | 2024.08.23 |
bitnami redmine 4.2.1-3 사용자 계정 암호 변경 방법 (0) | 2024.08.18 |