From owner-freebsd-questions@FreeBSD.ORG Tue Sep 27 11:23:24 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 CF43616A420 for ; Tue, 27 Sep 2005 11:23:24 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from smtp-out2.blueyonder.co.uk (smtp-out2.blueyonder.co.uk [195.188.213.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3009843D49 for ; Tue, 27 Sep 2005 11:23:23 +0000 (GMT) (envelope-from xfb52@dial.pipex.com) Received: from [82.41.253.249] ([82.41.253.249]) by smtp-out2.blueyonder.co.uk with Microsoft SMTPSVC(5.0.2195.6713); Tue, 27 Sep 2005 12:24:12 +0100 Message-ID: <43392BAA.7050909@dial.pipex.com> Date: Tue, 27 Sep 2005 12:23:22 +0100 From: Alex Zbyslaw User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.11) Gecko/20050917 X-Accept-Language: en-us, pl MIME-Version: 1.0 To: eoghan References: <6.2.3.4.2.20050926123752.0352ad60@cobalt.antimatter.net> <6.2.3.4.2.20050926131354.05b98e40@cobalt.antimatter.net> <92AE5A80-D02C-4475-9885-7B7BC0661EEB@redry.net> <6.2.3.4.2.20050926133955.05746c80@cobalt.antimatter.net> <03FB710F-26BA-494B-9C67-6D877DE57333@redry.net> <57416b300509261657764f2973@mail.gmail.com> <43390E85.8090001@redry.net> <6.2.3.4.2.20050927031459.05d71710@cobalt.antimatter.net> <43392755.3010103@redry.net> In-Reply-To: <43392755.3010103@redry.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 27 Sep 2005 11:24:12.0017 (UTC) FILETIME=[FC29EE10:01C5C355] Cc: freebsd-questions@freebsd.org, Glenn Dawson Subject: Re: mysql port install 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: Tue, 27 Sep 2005 11:23:24 -0000 eoghan wrote: > > Hi Glenn > Yes i have tried this and i get: > This: not found > I think there is something fundamentally wrong with my install? I > started acting up when i tried to do a sysintall upgrade which didnt > complete (perl and others wouldnt install for xorg i think). Ive > learnt a lot in the past few weeks though. and thanks for your help. i > really appreciate people helping out cos im really new at this. Dumped > windows for os x and got free bsd on my old windows machine to play with. You have somehow messed up one of the configuration files which is loaded when you try to start mysqld. Something is trying to load a program called "This" which it clearly doesn't find. Look in the following files for a line which starts "This": /etc/rc.conf /usr/local/etc/rc.d/mysql-server.sh /etc/defaults/rc.conf /etc.rc.conf.local (this may not exist and that's OK) You can then just comment out the line (put a # at the start of it). However, if you can't figure out why the line got there, you might want to post the contents of the file here (or at least the relevant portion) for more help. There may be other errors in the file since something has clearly messed up. If that does not help then try: find /etc -type f -exec egrep -H This {} \; | less and find /etc/usr/local/etc -type f -exec egrep -H This {} \; | less --Alex PS You can also do the find like this: find /etc -type f -print | xargs egrep This which is quicker on large filesystems, but less obvious.