File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,11 @@ The following options may be given as the first argument:
44
44
resolved relative to this
45
45
--big-tables Allow big result sets by saving all temporary sets on
46
46
file (Solves most 'table full' errors)
47
- --bind-address=name IP address to bind to.
47
+ --bind-address=name IP address(es) to bind to. Syntax: address[,address]...,
48
+ where address can be an IPv4 address, IPv6 address, host
49
+ name or one of the wildcard values *, ::, 0.0.0.0. In
50
+ case more than one address is specified in a
51
+ comma-separated list, wildcard values are not allowed.
48
52
--binlog-cache-size=#
49
53
The size of the transactional cache for updates to
50
54
transactional engines for the binary log. If you often
Original file line number Diff line number Diff line change @@ -44,7 +44,11 @@ The following options may be given as the first argument:
44
44
resolved relative to this
45
45
--big-tables Allow big result sets by saving all temporary sets on
46
46
file (Solves most 'table full' errors)
47
- --bind-address=name IP address to bind to.
47
+ --bind-address=name IP address(es) to bind to. Syntax: address[,address]...,
48
+ where address can be an IPv4 address, IPv6 address, host
49
+ name or one of the wildcard values *, ::, 0.0.0.0. In
50
+ case more than one address is specified in a
51
+ comma-separated list, wildcard values are not allowed.
48
52
--binlog-cache-size=#
49
53
The size of the transactional cache for updates to
50
54
transactional engines for the binary log. If you often
Original file line number Diff line number Diff line change @@ -749,7 +749,12 @@ static Sys_var_uint Sys_default_password_lifetime(
749
749
&Plock_default_password_lifetime);
750
750
751
751
static Sys_var_charptr Sys_my_bind_addr(
752
- "bind_address", "IP address to bind to.",
752
+ "bind_address",
753
+ "IP address(es) to bind to. Syntax: address[,address]...,"
754
+ " where address can be an IPv4 address, IPv6 address,"
755
+ " host name or one of the wildcard values *, ::, 0.0.0.0."
756
+ " In case more than one address is specified in a"
757
+ " comma-separated list, wildcard values are not allowed.",
753
758
READ_ONLY NON_PERSIST GLOBAL_VAR(my_bind_addr_str), CMD_LINE(REQUIRED_ARG),
754
759
IN_FS_CHARSET, DEFAULT(MY_BIND_ALL_ADDRESSES));
755
760
You can’t perform that action at this time.
0 commit comments