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
2cd99bf9
Commit
2cd99bf9
authored
Oct 26, 2001
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removal of duplicate lines in transaction text.
Fixup of Windows texts.
parent
9393a050
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
40 deletions
+26
-40
Docs/manual.texi
Docs/manual.texi
+26
-40
No files found.
Docs/manual.texi
View file @
2cd99bf9
...
@@ -4380,11 +4380,6 @@ ORDER BY columns in the result, something that is you are not allowed
...
@@ -4380,11 +4380,6 @@ ORDER BY columns in the result, something that is you are not allowed
to do in ANSI SQL.
to do in ANSI SQL.
@item
@item
Because MySQL allows you to work with table types that doesn't
support transactions (and thus can't @code{rollback} data) some things
behaves a little different in MySQL than in other SQL servers:
(This is just to ensure that MySQL never need to do a rollback
for a SQL command). This may be a little awkward at times as column
Because MySQL allows you to work with table types that don't
Because MySQL allows you to work with table types that don't
support transactions, and thus can't @code{rollback} data, some things
support transactions, and thus can't @code{rollback} data, some things
behave a little differently in MySQL than in other SQL servers.
behave a little differently in MySQL than in other SQL servers.
...
@@ -6341,7 +6336,8 @@ In the following circumstances you will need to use the MySQL
...
@@ -6341,7 +6336,8 @@ In the following circumstances you will need to use the MySQL
configuration file:
configuration file:
@itemize @bullet
@itemize @bullet
@item
@item
The install directory is different than the default @file{c:\mysql}.
The install/data directories are different than the default
@file{c:\mysql} and @file{c:\mysql\data}.
@item
@item
If you want to use one of the these servers:
If you want to use one of the these servers:
@itemize @bullet
@itemize @bullet
...
@@ -6379,10 +6375,6 @@ If the data directory is other than the default
...
@@ -6379,10 +6375,6 @@ If the data directory is other than the default
directory and paste it on the your option new directory,
directory and paste it on the your option new directory,
e.g.: @file{d:\mydata\mysql}.
e.g.: @file{d:\mydata\mysql}.
Note that you should specify all paths with @samp{/} or @samp{\\}
instead of @samp{\}, because @samp{\} is the escape character in
MySQL. @xref{Option files}.
If you want to use the @code{InnoDB} transactional tables, you
If you want to use the @code{InnoDB} transactional tables, you
need to manually create two new directories to hold the InnoDB
need to manually create two new directories to hold the InnoDB
data and log files, e.g. @file{c:\ibdata} and @file{c:\iblogs}.
data and log files, e.g. @file{c:\ibdata} and @file{c:\iblogs}.
...
@@ -10662,6 +10654,11 @@ You can kill the MySQL server by executing:
...
@@ -10662,6 +10654,11 @@ You can kill the MySQL server by executing:
C:\> C:\mysql\bin\mysqladmin -u root shutdown
C:\> C:\mysql\bin\mysqladmin -u root shutdown
@end example
@end example
This calls the MySQL administation utility as user `root', which
is the default Administrator in the MySQL grant system. Please
note that the MySQL grant system is wholly independent from any
login users under Windows.
Note that Win95 and Win98 don't support creation of named pipes.
Note that Win95 and Win98 don't support creation of named pipes.
On Win95 and Win98, you can only use named pipes to connect to a
On Win95 and Win98, you can only use named pipes to connect to a
remote MySQL server running on a Windows NT/2000 server host.
remote MySQL server running on a Windows NT/2000 server host.
...
@@ -10701,39 +10698,38 @@ the following command:
...
@@ -10701,39 +10698,38 @@ the following command:
C:\mysql\bin> mysqladmin -u root shutdown
C:\mysql\bin> mysqladmin -u root shutdown
@end example
@end example
This calls the MySQL administation utility as user `root', which
is the default Administrator in the MySQL grant system. Please
note that the MySQL grant system is wholly independent from any
login users under Windows.
Now install the server service:
Now install the server service:
@example
@example
C:\mysql\bin> mysqld-max-nt --install
C:\mysql\bin> mysqld-max-nt --install
@end example
@end example
If any options are required, they must be specified as
``Startup parameters'' in the SCM utility before you
start the MySQL service.
The SCM Utility (Windows Service Control Manager) can
be found in the Windows Control Panel.
For information about which server binary to run, see
For information about which server binary to run, see
@ref{Windows prepare environment}.
@ref{Windows prepare environment}.
Please note that from MySQL version 3.23.44, you have the choice
Please note that from MySQL version 3.23.44, you have the choice
to set up the service as Manual (if you don't wish the Windows
of set up the service as Manual instead (if you don't wish the
Service Control Manager SCM to automatically start the server
SCM to automatically start the server during the boot process):
during the boot process):
@example
@example
C:\mysql\bin> mysqld-max-nt --install-manual
C:\mysql\bin> mysqld-max-nt --install-manual
@end example
@end example
To start or stop the MySQL server service:
@example
C:\> NET START MySQL
C:\> NET STOP MySQL
@end example
The service is installed with the name @code{MySQL}. Once
The service is installed with the name @code{MySQL}. Once
installed, it must be started using the Services Control
installed, it can be immediately started from the SCM utility,
Manager (SCM) Utility found in the Control Panel, or by
or by using the command @code{NET START MySQL}.
using the @code{NET START MySQL} command.
If any options are required, they must be specified as
``Startup parameters'' in the SCM utility before you
start the MySQL service.
Once running, @code{mysqld-max-nt} can be stopped using
Once running, @code{mysqld-max-nt} can be stopped using
@code{mysqladmin}, from the SCM utility or by using the
@code{mysqladmin}, from the SCM utility or by using the
...
@@ -10741,19 +10737,9 @@ command @code{NET STOP MySQL}.
...
@@ -10741,19 +10737,9 @@ command @code{NET STOP MySQL}.
If you use SCM to stop @code{mysqld-max-nt}, there is a strange
If you use SCM to stop @code{mysqld-max-nt}, there is a strange
message from SCM about @code{mysqld shutdown normally}.
message from SCM about @code{mysqld shutdown normally}.
When run as a service, @code{mysqld-max-nt} has no access to a
Please note that when run as a service, @code{mysqld-max-nt}
console and so no messages can be seen.
has no access to a console and so no messages can be seen.
On NT/2000 you can get the following service error messages:
Errors can be checked in @file{c:\mysql\data\mysql.err}.
@multitable @columnfractions .3 .7
@item Permission Denied @tab
Means that it cannot find @code{mysqld-max-nt.exe}.
@item Cannot Register @tab
Means that the path is incorrect.
@item Failed to install service. @tab
Means that the service is already installed or that the Service
Control Manager is in bad state.
@end multitable
If you have problems installing @code{mysqld-max-nt} as a
If you have problems installing @code{mysqld-max-nt} as a
service, try starting it with the full path:
service, try starting it with the full path:
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