Skip to content

Commit

Permalink
Remove --default-authentication-plugin (deprecated in mysql and warni…
Browse files Browse the repository at this point in the history
…ng in mariadb) option and add --log-bin=mysqld-bin in accordance with warning about --binlog-expire-logs-seconds.
  • Loading branch information
aksm committed Feb 28, 2023
1 parent e4c03b9 commit 47acf5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy/ec2-docker/docker-compose-aws-s3-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ services:
- /drupalconfig
db:
image: mariadb:10.6.8-focal
command: --default-authentication-plugin=mysql_native_password --binlog-expire-logs-seconds=172800 --max_allowed_packet=256M --sort_buffer_size=512K --lower_case_table_names=1 --transaction-isolation=READ-COMMITTED
command: --binlog-expire-logs-seconds=172800 --max_allowed_packet=256M --sort_buffer_size=512K --lower_case_table_names=1 --transaction-isolation=READ-COMMITTED --log-bin=mysqld-bin
container_name: esmero-db
restart: always
environment:
Expand Down
2 changes: 1 addition & 1 deletion deploy/ec2-docker/docker-compose-aws-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ services:
- /drupalconfig
db:
image: mysql:8.0.28
command: mysqld --default-authentication-plugin=mysql_native_password --binlog-expire-logs-seconds=172800 --max_allowed_packet=256M --transaction-isolation=READ-COMMITTED
command: mysqld --binlog-expire-logs-seconds=172800 --max_allowed_packet=256M --transaction-isolation=READ-COMMITTED --log-bin=mysqld-bin
container_name: esmero-db
restart: always
environment:
Expand Down
2 changes: 1 addition & 1 deletion deploy/ec2-docker/docker-compose-selfsigned.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ services:
- /drupalconfig
db:
image: mysql:8.0.28
command: mysqld --default-authentication-plugin=mysql_native_password --binlog-expire-logs-seconds=172800 --max_allowed_packet=256M --transaction-isolation=READ-COMMITTED
command: mysqld --binlog-expire-logs-seconds=172800 --max_allowed_packet=256M --transaction-isolation=READ-COMMITTED --log-bin=mysqld-bin
container_name: esmero-db
restart: always
environment:
Expand Down

0 comments on commit 47acf5b

Please sign in to comment.