diff options
author | unknown <hf@deer.(none)> | 2003-07-29 13:11:44 +0500 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2003-07-29 13:11:44 +0500 |
commit | 8713e9791ce79bd8f4e939c4c8e420809cd7832b (patch) | |
tree | 32eb0255f9c817d609ceb09df74be97db4b244e5 | |
parent | 2ee5454d1dab1b7e755b3f067b33f308870b73f2 (diff) | |
parent | 0db8648a1a98fc376668459095b53f85bddba8fc (diff) | |
download | mariadb-git-8713e9791ce79bd8f4e939c4c8e420809cd7832b.tar.gz |
Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-4.1
into deer.(none):/home/hf/work/mysql-4.1.clean
-rw-r--r-- | BitKeeper/etc/logging_ok | 1 | ||||
-rwxr-xr-x | Docs/README.1st | 62 |
2 files changed, 63 insertions, 0 deletions
diff --git a/BitKeeper/etc/logging_ok b/BitKeeper/etc/logging_ok index 58286f16f5c..bc24761c7f9 100644 --- a/BitKeeper/etc/logging_ok +++ b/BitKeeper/etc/logging_ok @@ -25,6 +25,7 @@ gluh@gluh.(none) gluh@gluh.mysql.r18.ru greg@mysql.com guilhem@mysql.com +gweir@build.mysql.com gweir@work.mysql.com heikki@donna.mysql.fi heikki@hundin.mysql.fi diff --git a/Docs/README.1st b/Docs/README.1st new file mode 100755 index 00000000000..a6da0680924 --- /dev/null +++ b/Docs/README.1st @@ -0,0 +1,62 @@ +This ALPHA build of MySQL 4.1 for the Windows platform does not come with +an installer. A full-featured installer is being developed for +the 4.1 series, and it is scheduled to be released with MySQL 4.1 BETA. + +** FRESH INSTALL ** + +To install MySQL 4.1 as a 'fresh' install, unzip this archive to a directory +of your choice (we suggest 'c:\', which will cause MySQL to be installed in +a directory named 'mysql' in 'c:\'). You should then follow the directions +in the user manual for starting/stopping MySQL: + +(Windows 9x/ME) http://www.mysql.com/doc/en/Win95_start.html +(Windows NT/2000/XP) http://www.mysql.com/doc/en/NT_start.html + +** UPGRADE INSTALL ** + +To install MySQL 4.1 as an upgrade to your current MySQL version, you need +to perform the following steps: + +* Backup your original install (always a good idea!) +* Unzip this archive to a separate directory from your currently + installed MySQL database (or don't unpack the 'Data' subdirectory + when unzipping this archive, otherwise your databases will be over- + written). + +* Shutdown all mysql server processes/services +* Remove the Win32 Service (if appropriate for your OS): + + c:\mysql\bin\mysqld-nt --remove + +* Exit 'WinMySQLAdmin' (if it is running). +* If you unzipped this archive into a separate directory, copy all of the + directories and their contents from the location where you unzipped this + archive, excluding the 'data' directory, to the location + where your current MySQL server is installed. +* Start the MySQL server with the '--skip-grant-tables' option (assuming + your MySQL server is installed in 'c:\mysql'): + + c:\mysql\bin\mysqld-opt --skip-grant-tables + +* Execute the 'mysql_fix_privilege_tables.sql' script in the 'scripts + directory: + + c:\mysql\bin\mysql < c:\mysql\scripts\mysql_fix_privilege_tables.sql + +* Stop the server + + c:\mysql\bin\mysqladmin -u root shutdown + +* Re-install the Win32 service (if required): + + c:\mysql\bin\mysqld-nt --install + +* Re-start the server or service as normal. + +** Further Questions ** + +You can find further information about running MySQL on Windows in the +manual that ships in the 'Doc' subdirectory, or at: + +http://www.mysql.com/doc/en/Windows.html + |