From owner-freebsd-database@FreeBSD.ORG Sun Feb 8 04:28:05 2004 Return-Path: Delivered-To: freebsd-database@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51CB116A4CF for ; Sun, 8 Feb 2004 04:28:05 -0800 (PST) Received: from phalanx.trit.org (phalanx.trit.org [63.198.170.138]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DB5043D1D for ; Sun, 8 Feb 2004 04:28:05 -0800 (PST) (envelope-from dima@trit.org) Received: by phalanx.trit.org (Postfix, from userid 406) id E9DF065C00C; Sun, 8 Feb 2004 12:28:04 +0000 (UTC) Received: from harpoon.trit.org (harpoon-wifi.trit.org [192.168.4.243]) by phalanx.trit.org (Postfix) with ESMTP id CE78365C009; Sun, 8 Feb 2004 12:28:00 +0000 (UTC) Received: from harpoon.trit.org (localhost [127.0.0.1]) by harpoon.trit.org (8.12.8/8.12.9) with ESMTP id i18CS0K5007636; Sun, 8 Feb 2004 12:28:00 GMT (envelope-from dima@trit.org) Received: (from dima@localhost) by harpoon.trit.org (8.12.8/8.12.8/Submit) id i18CRxLP007635; Sun, 8 Feb 2004 12:27:59 GMT X-Authentication-Warning: harpoon.trit.org: dima set sender to dima@trit.org using -f Date: Sun, 8 Feb 2004 12:27:59 +0000 From: Dima Dorfman To: Stefan Moro Message-ID: <20040208122758.GA6532@trit.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4i X-PGP-Key: 69FAE582 (http://www.trit.org/~dima/dima.asc) X-PGP-Fingerprint: B340 8338 7DA3 4D61 7632 098E 0730 055B 69FA E582 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.61 (1.212.2.1-2003-12-09-exp) on phalanx.trit.org X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.61 cc: freebsd-database@freebsd.org Subject: Re: mysql40 and FBSD 4.9 X-BeenThere: freebsd-database@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Database use and development under FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Feb 2004 12:28:05 -0000 Stefan Moro wrote: > Afetr the > installation I was trying to set the mysql root-users password with > mysqladmin -u root password 'new-password' > > when i tried that I got the following message: > > mysqladmin: connect to server at 'localhost' failed > error: 'Access denied for user: 'root@localhost' (Using password: NO)' "Using password: NO" means that the client tried to authenticate without sending a password. Try: mysqladmin -u root -p password 'new-password' Note the added -p flag, which should cause the client to prompt you for the current root password. Hope this helps, Dima.