From owner-freebsd-questions@FreeBSD.ORG Sun Feb 5 21:00:25 2006 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 338D116A42C for ; Sun, 5 Feb 2006 21:00:25 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from efacilitas.de (smtp.efacilitas.de [85.10.196.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 881C543D66 for ; Sun, 5 Feb 2006 21:00:14 +0000 (GMT) (envelope-from bkoenig@cs.tu-berlin.de) Received: from eurystheus.local (port-212-202-169-72.dynamic.qsc.de [212.202.169.72]) by efacilitas.de (Postfix) with ESMTP id A47C44C6C9; Sun, 5 Feb 2006 22:09:33 +0100 (CET) Received: from [192.168.1.2] (muhkuh.local [192.168.1.2]) by eurystheus.local (Postfix) with ESMTP id F25745285F; Sun, 5 Feb 2006 21:58:54 +0100 (CET) Message-ID: <43E6675D.5080903@cs.tu-berlin.de> Date: Sun, 05 Feb 2006 22:00:13 +0100 From: =?ISO-8859-1?Q?Bj=F6rn_K=F6nig?= User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: de-DE, de, en-us, en MIME-Version: 1.0 To: je killen References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: MySQL version for 6.0 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: Sun, 05 Feb 2006 21:00:26 -0000 je killen schrieb: > Greetings: > I'm looking to find out if there is a current version of MySQL specific > for v6 FreeBSD on AMD64. I don't see one > on the MySQL site and I don't know if I can successfully build it from > source on this machine. > thanks; > Jeff K You can use FreeBSD's software management to install mysql. After you have installed FreeBSD you can install MySQL easily: pkg_add -r mysql41-server Alternativeyl you can choose mysql323-server, mysql40-server or mysql50-server. Add these lines to /etc/rc.conf: mysql_enable="YES" mysql_dbdir="/path/to/database/dir" # this is optionally Then run /usr/local/etc/rc.d/mysql-server.sh start That's all. Now you have set up a MySQL server. Björn