mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
mysql-test-run.pl:
Put socket files into $opt_tmpdir, to avoid problems with platforms that can't handle long socket paths. mysql-test/mysql-test-run.pl: Put socket files into $opt_tmpdir, to avoid problems with platforms that can't handle long socket paths.
This commit is contained in:
parent
3e68a46ab6
commit
4c4c0f87ca
1 changed files with 4 additions and 4 deletions
|
@ -840,8 +840,8 @@ sub command_line_setup () {
|
|||
server_id => 1,
|
||||
port => $im_mysqld1_port,
|
||||
path_datadir => "$opt_vardir/im_mysqld_1.data",
|
||||
path_sock => "$opt_vardir/mysqld_1.sock",
|
||||
path_pid => "$opt_vardir/mysqld_1.pid",
|
||||
path_sock => "$opt_tmpdir/mysqld_1.sock",
|
||||
path_pid => "$opt_vardir/run/mysqld_1.pid",
|
||||
};
|
||||
|
||||
$instance_manager->{'instances'}->[1]=
|
||||
|
@ -849,8 +849,8 @@ sub command_line_setup () {
|
|||
server_id => 2,
|
||||
port => $im_mysqld2_port,
|
||||
path_datadir => "$opt_vardir/im_mysqld_2.data",
|
||||
path_sock => "$opt_vardir/mysqld_2.sock",
|
||||
path_pid => "$opt_vardir/mysqld_2.pid",
|
||||
path_sock => "$opt_tmpdir/mysqld_2.sock",
|
||||
path_pid => "$opt_vardir/run/mysqld_2.pid",
|
||||
nonguarded => 1,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue