From owner-freebsd-questions@FreeBSD.ORG Wed Feb 4 19:27:23 2004 Return-Path: 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 9523416A4CE for ; Wed, 4 Feb 2004 19:27:23 -0800 (PST) Received: from out005.verizon.net (out005pub.verizon.net [206.46.170.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23A5143D45 for ; Wed, 4 Feb 2004 19:27:21 -0800 (PST) (envelope-from mike@pcmedx.com) Received: from duron.pcmedx.com ([4.46.22.189]) by out005.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040205032720.FBWU2677.out005.verizon.net@duron.pcmedx.com>; Wed, 4 Feb 2004 21:27:20 -0600 Received: from localhost (localhost [127.0.0.1]) by duron.pcmedx.com (Postfix) with ESMTP id CD1CDAC18; Wed, 4 Feb 2004 19:27:19 -0800 (PST) Received: from duron.pcmedx.com ([127.0.0.1]) by localhost (duron.pcmedx.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 43780-03; Wed, 4 Feb 2004 19:27:19 -0800 (PST) Received: from mike (mike.pcmedx.com [192.168.240.244]) by duron.pcmedx.com (Postfix) with SMTP id C0DEAA9DD; Wed, 4 Feb 2004 19:27:18 -0800 (PST) Message-ID: <002f01c3eb97$f96a2ce0$f4f0a8c0@pcmedx.com> From: "Mike Maltese" To: References: <182FDBA0-5789-11D8-A424-000393C505EC@sprynet.com> Date: Wed, 4 Feb 2004 19:27:25 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Virus-Scanned: by amavisd (http://www.amavis.org) and f-prot (http://www.f-prot.com) at pcmedx.com X-Authentication-Info: Submitted using SMTP AUTH at out005.verizon.net from [4.46.22.189] at Wed, 4 Feb 2004 21:27:20 -0600 cc: John Adams Subject: Re: Starting MySQL X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Feb 2004 03:27:23 -0000 > I added MySQL with portupgrade today, but don't find mysqld anywhere > on the machine. How do I start this silly thing? /usr/local/etc/rc.d/mysql-server.sh mysqld resides in /usr/local/libexec, which could be why you didn't find it. That doesn't really matter because a wrapper is used to start it anyway (/usr/local/bin/safe_mysqld). When in doubt, take a look at pkg-plist for what gets installed where. Also, shell scripts for starting/stopping processes can usually be found in the file/ directory of the port. Mike