Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
1c3cd1fd
Commit
1c3cd1fd
authored
May 22, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merged.
parent
089595c5
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
28 additions
and
23 deletions
+28
-23
mysql-test/r/im_instance_conf.result
mysql-test/r/im_instance_conf.result
+4
-4
mysql-test/r/im_options.result
mysql-test/r/im_options.result
+7
-7
server-tools/instance-manager/CMakeLists.txt
server-tools/instance-manager/CMakeLists.txt
+1
-0
server-tools/instance-manager/instance_options.cc
server-tools/instance-manager/instance_options.cc
+9
-5
server-tools/instance-manager/mysqlmanager.cc
server-tools/instance-manager/mysqlmanager.cc
+2
-2
server-tools/instance-manager/options.cc
server-tools/instance-manager/options.cc
+5
-5
No files found.
mysql-test/r/im_instance_conf.result
View file @
1c3cd1fd
--------------------------------------------------------------------
server_id =1
server_id =2
server_id =
1
server_id =
2
--------------------------------------------------------------------
SHOW INSTANCES;
instance_name state
...
...
@@ -20,8 +20,8 @@ mysqld3 offline
mysqld2 offline
mysqld1 online
--------------------------------------------------------------------
server_id =1
server_id =2
server_id =
1
server_id =
2
--------------------------------------------------------------------
CREATE INSTANCE mysqld1;
ERROR HY000: Instance already exists
...
...
mysql-test/r/im_options.result
View file @
1c3cd1fd
--------------------------------------------------------------------
server_id =1
server_id =2
server_id =
1
server_id =
2
--------------------------------------------------------------------
SHOW VARIABLES LIKE 'server_id';
Variable_name Value
...
...
@@ -99,13 +99,13 @@ ERROR HY000: The instance is active. Stop the instance first
UNSET mysqld2.server_id, mysqld3.server_id, mysqld.ccc;
ERROR HY000: Bad instance name. Check that the instance with such a name exists
--------------------------------------------------------------------
server_id =1
server_id =
1
server_id=2
--------------------------------------------------------------------
UNSET mysqld2.server_id, mysqld3.server_id, mysqld1.ccc;
ERROR HY000: The instance is active. Stop the instance first
--------------------------------------------------------------------
server_id =1
server_id =
1
server_id=2
--------------------------------------------------------------------
DROP INSTANCE mysqld3;
...
...
@@ -115,7 +115,7 @@ SET mysqld2.server_id = 222 ;
SET mysqld2 . server_id = 222 ;
SET mysqld2 . server_id = 222 , mysqld2 . aaa , mysqld2 . bbb ;
--------------------------------------------------------------------
server_id =1
server_id =
1
server_id=222
--------------------------------------------------------------------
aaa
...
...
@@ -124,13 +124,13 @@ bbb
--------------------------------------------------------------------
UNSET mysqld2 . aaa , mysqld2 . bbb ;
--------------------------------------------------------------------
server_id =1
server_id =
1
server_id=222
--------------------------------------------------------------------
--------------------------------------------------------------------
--------------------------------------------------------------------
--------------------------------------------------------------------
server_id =1
server_id =
1
server_id=222
--------------------------------------------------------------------
SHOW VARIABLES LIKE 'server_id';
...
...
server-tools/instance-manager/CMakeLists.txt
View file @
1c3cd1fd
...
...
@@ -9,6 +9,7 @@ ADD_EXECUTABLE(mysqlmanager buffer.cc command.cc commands.cc guardian.cc instanc
instance_options.cc listener.cc log.cc manager.cc messages.cc mysql_connection.cc
mysqlmanager.cc options.cc parse.cc parse_output.cc priv.cc protocol.cc
thread_registry.cc user_map.cc imservice.cpp windowsservice.cpp
user_management_commands.cc
../../sql/net_serv.cc ../../sql-common/pack.c ../../sql/password.c
../../sql/sql_state.c ../../sql-common/client.c ../../libmysql/get_password.c
../../libmysql/errmsg.c
)
...
...
server-tools/instance-manager/instance_options.cc
View file @
1c3cd1fd
...
...
@@ -89,6 +89,9 @@ Instance_options::Instance_options()
mysqld_path
.
str
=
NULL
;
mysqld_path
.
length
=
0
;
mysqld_real_path
.
str
=
NULL
;
mysqld_real_path
.
length
=
0
;
memset
(
logs
,
0
,
sizeof
(
logs
));
}
...
...
@@ -206,12 +209,12 @@ err:
int
Instance_options
::
fill_mysqld_real_path
()
{
char
result
[
FN_REFLEN
];
char
help_option
[]
=
" --no-defaults --help"
;
LEX_STRING
help_option
=
{
C_STRING_WITH_SIZE
(
" --no-defaults --help"
)
};
int
rc
=
1
;
Buffer
cmd
(
mysqld_path
_len
+
sizeof
(
help_option
)
);
Buffer
cmd
(
mysqld_path
.
length
+
help_option
.
length
);
if
(
create_mysqld_command
(
&
cmd
,
mysqld_path
,
mysqld_path_len
,
help_option
,
sizeof
(
help_option
)))
if
(
create_mysqld_command
(
&
cmd
,
&
mysqld_path
,
&
help_option
))
goto
err
;
bzero
(
result
,
FN_REFLEN
);
...
...
@@ -226,7 +229,8 @@ int Instance_options::fill_mysqld_real_path()
/* chop the path of at [OPTIONS] */
if
((
options_str
=
strstr
(
result
,
"[OPTIONS]"
)))
*
options_str
=
'\0'
;
mysqld_real_path
=
strdup_root
(
&
alloc
,
result
);
mysqld_real_path
.
str
=
strdup_root
(
&
alloc
,
result
);
mysqld_real_path
.
length
=
strlen
(
mysqld_real_path
.
str
);
}
err:
if
(
rc
)
...
...
server-tools/instance-manager/mysqlmanager.cc
View file @
1c3cd1fd
...
...
@@ -365,10 +365,10 @@ spawn:
pid
=
getpid
();
/* Get our pid. */
log_info
(
"Angel pid file: '%s'; PID: %d."
,
(
const
char
*
)
options
.
angel_pid_file_name
,
(
const
char
*
)
Options
::
Daemon
::
angel_pid_file_name
,
(
int
)
pid
);
create_pid_file
(
Options
::
angel_pid_file_name
,
pid
);
create_pid_file
(
Options
::
Daemon
::
angel_pid_file_name
,
pid
);
while
(
child_status
==
CHILD_OK
&&
is_terminated
==
0
)
sigsuspend
(
&
zeromask
);
...
...
server-tools/instance-manager/options.cc
View file @
1c3cd1fd
...
...
@@ -67,7 +67,7 @@ static int setup_windows_defaults();
my_bool
Options
::
Daemon
::
run_as_service
=
FALSE
;
const
char
*
Options
::
Daemon
::
log_file_name
=
QUOTE
(
DEFAULT_LOG_FILE_NAME
);
const
char
*
Options
::
Daemon
::
user
=
NULL
;
/* No default value */
const
char
*
Options
::
angel_pid_file_name
=
NULL
;
const
char
*
Options
::
Daemon
::
angel_pid_file_name
=
NULL
;
const
char
*
Options
::
Main
::
config_file
=
QUOTE
(
DEFAULT_CONFIG_FILE
);
const
char
*
...
...
@@ -155,8 +155,8 @@ static struct my_option my_long_options[] =
#ifndef __WIN__
{
"angel-pid-file"
,
OPT_ANGEL_PID_FILE
,
"Pid file for angel process."
,
(
gptr
*
)
&
Options
::
angel_pid_file_name
,
(
gptr
*
)
&
Options
::
angel_pid_file_name
,
(
gptr
*
)
&
Options
::
Daemon
::
angel_pid_file_name
,
(
gptr
*
)
&
Options
::
Daemon
::
angel_pid_file_name
,
0
,
GET_STR
,
REQUIRED_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
#endif
...
...
@@ -507,8 +507,8 @@ void Options::cleanup()
delete
User_management
::
cmd
;
#ifndef __WIN__
if
(
Options
::
run_as_service
)
free
((
void
*
)
Options
::
angel_pid_file_name
);
if
(
Options
::
Daemon
::
run_as_service
)
free
((
void
*
)
Options
::
Daemon
::
angel_pid_file_name
);
#endif
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment