From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by nuthatch.gentoo.org with esmtp (Exim 4.54) id 1Eu6mm-0005CZ-7h for garchives@archives.gentoo.org; Wed, 04 Jan 2006 11:26:32 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.13.5/8.13.5) with SMTP id k04BQHLg018082; Wed, 4 Jan 2006 11:26:17 GMT Received: from smtp.gentoo.org (smtp.gentoo.org [134.68.220.30]) by robin.gentoo.org (8.13.5/8.13.5) with ESMTP id k04BQHFv013337 for ; Wed, 4 Jan 2006 11:26:17 GMT Message-Id: <200601041126.k04BQHFv013337@robin.gentoo.org> Received: from lark.gentoo.osuosl.org ([140.211.166.177] helo=lark.gentoo.org) by smtp.gentoo.org with smtp (Exim 4.54) id 1Eu6mW-0003sZ-Oq for gentoo-doc-cvs@lists.gentoo.org; Wed, 04 Jan 2006 11:26:16 +0000 Received: by lark.gentoo.org (sSMTP sendmail emulation); Wed, 4 Jan 2006 11:26:16 +0000 From: "Xavier Neys" Date: Wed, 4 Jan 2006 11:26:16 +0000 To: gentoo-doc-cvs@lists.gentoo.org Subject: [gentoo-doc-cvs] cvs commit: mysql-upgrading.xml Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-doc-cvs@gentoo.org Reply-to: docs-team@lists.gentoo.org X-Archives-Salt: 94588fd5-03d7-43a9-b1e0-100791148942 X-Archives-Hash: b50d334669354a3aed59c0c913b31840 neysx 06/01/04 11:26:16 Modified: xml/htdocs/doc/en mysql-upgrading.xml Log: #117610 Quote password Revision Changes Path 1.7 +8 -8 xml/htdocs/doc/en/mysql-upgrading.xml file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/mysql-upgrading.xml?rev=1.7&content-type=text/x-cvsweb-markup&cvsroot=gentoo plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/mysql-upgrading.xml?rev=1.7&content-type=text/plain&cvsroot=gentoo diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/mysql-upgrading.xml.diff?r1=1.6&r2=1.7&cvsroot=gentoo Index: mysql-upgrading.xml =================================================================== RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/mysql-upgrading.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- mysql-upgrading.xml 21 Dec 2005 11:03:31 -0000 1.6 +++ mysql-upgrading.xml 4 Jan 2006 11:26:16 -0000 1.7 @@ -1,6 +1,6 @@ - + Upgrade guide to MySQL 4.1.x @@ -22,8 +22,8 @@ -1.5 -2005-12-21 +1.6 +2006-01-04 Upgrading from old versions of MySQL @@ -57,7 +57,7 @@
 # mysqldump \
   -uroot \
-  --password=your_password \
+  --password='your_password' \
   -hlocalhost \
   --all-databases \
   --opt \
@@ -145,14 +145,14 @@
 # cat BACKUP_MYSQL_4.0.SQL \
      | mysql \
      -uroot \
-     --password=your_password \
+     --password='your_password' \
      -hlocalhost \
      --max_allowed_packet=16M
 
 # mysql_fix_privilege_tables \
      --defaults-file=/etc/mysql/my.cnf \
      --user=root \
-     --password=your_password
+     --password='your_password'
 

@@ -219,8 +219,8 @@ # revdep-rebuild # /etc/init.d/mysql start # mysql_fix_privilege_tables --defaults-file=/etc/mysql/my.cnf \ - -uroot --password=your_password -# mysql --database=mysql -uroot --password=your_password < /tmp/new_pieces.sql + -uroot --password='your_password' +# mysql --database=mysql -uroot --password='your_password' < /tmp/new_pieces.sql # /etc/init.d/mysql restart # just to be sure -- gentoo-doc-cvs@gentoo.org mailing list