Skip to content

fix: mysql container Unable to start #10185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ innodb_data_file_path = ibdata1:10M:autoextend
innodb_buffer_pool_size = 16M
#innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
innodb_log_file_size = 5M
innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 1
innodb_lock_wait_timeout = 50
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ public class MySQLTestImages {
public static final DockerImageName MYSQL_80_IMAGE = DockerImageName.parse("mysql:8.0.36");

public static final DockerImageName MYSQL_INNOVATION_IMAGE = DockerImageName.parse("mysql:8.3.0");

public static final DockerImageName MYSQL_93_IMAGE = DockerImageName.parse("mysql:9.3.0");
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public static DockerImageName[] params() {
MySQLTestImages.MYSQL_57_IMAGE,
MySQLTestImages.MYSQL_80_IMAGE,
MySQLTestImages.MYSQL_INNOVATION_IMAGE,
MySQLTestImages.MYSQL_93_IMAGE
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public static DockerImageName[] params() {
MySQLTestImages.MYSQL_57_IMAGE,
MySQLTestImages.MYSQL_80_IMAGE,
MySQLTestImages.MYSQL_INNOVATION_IMAGE,
MySQLTestImages.MYSQL_93_IMAGE
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ innodb_data_file_path = ibdata1:10M:autoextend
innodb_buffer_pool_size = 16M
#innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
innodb_log_file_size = 5M
innodb_log_buffer_size = 8M
innodb_flush_log_at_trx_commit = 1
innodb_lock_wait_timeout = 50
Loading