From owner-freebsd-questions@FreeBSD.ORG Thu Oct 27 22:22:46 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7032D16A41F for ; Thu, 27 Oct 2005 22:22:46 +0000 (GMT) (envelope-from dpkirchner@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0388E43D45 for ; Thu, 27 Oct 2005 22:22:45 +0000 (GMT) (envelope-from dpkirchner@gmail.com) Received: by xproxy.gmail.com with SMTP id t5so124238wxc for ; Thu, 27 Oct 2005 15:22:45 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=MslZsnIJQnVB78UhJB4HgNIb+EwXwPqWFz8C9ChwJ9B01TOP67iG5ZkZCnda8PfvhZvilc62ug1dRCruJ5nTflO390RT9nAgnJIbhEZtLVbv/A/hEAzIbTZ5/rGKn/jeV0qBA9erTo3YscF7mZZkuAihWqB1Fd8Ts4Lv8ye6JIk= Received: by 10.70.28.5 with SMTP id b5mr1516153wxb; Thu, 27 Oct 2005 15:22:45 -0700 (PDT) Received: by 10.70.104.18 with HTTP; Thu, 27 Oct 2005 15:22:45 -0700 (PDT) Message-ID: <35c231bf0510271522y65ad8864k15dac655433030f8@mail.gmail.com> Date: Thu, 27 Oct 2005 15:22:45 -0700 From: David Kirchner Sender: dpkirchner@gmail.com To: eoghan In-Reply-To: <5241ED1F-1488-467B-ACAD-128D5E36A5B4@redry.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <5241ED1F-1488-467B-ACAD-128D5E36A5B4@redry.net> Cc: "Andrew P." , freebsd-questions@freebsd.org Subject: Re: increasing mount size X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2005 22:22:46 -0000 On 10/27/05, eoghan wrote: > oops! typo... sorry... output: > nathaniel# du -s /var/* > 2 /var/account > 6 /var/at > 8 /var/backups > 4 /var/crash > 4 /var/cron > 71010 /var/db This is probably because the port uses /var/db/mysql as the database directory (not sure why since /var is pretty tiny). An easy "fix" is: mysqladmin shutdown mkdir /usr/local mv /var/db/mysql /usr/local/ ln -s /usr/local/mysql /var/db/mysql then start mysqld however it is you do that (mysql-server.sh start maybe?)