Date: Mon, 26 Sep 2005 21:53:52 +0100 From: eoghan <freebsd@redry.net> To: Glenn Dawson <glenn@antimatter.net> Cc: freebsd-questions@freebsd.org Subject: Re: mysql port install Message-ID: <03FB710F-26BA-494B-9C67-6D877DE57333@redry.net> In-Reply-To: <6.2.3.4.2.20050926133955.05746c80@cobalt.antimatter.net> References: <A9542760-015D-431A-9CD5-315BA5D60B7C@redry.net> <6.2.3.4.2.20050926123752.0352ad60@cobalt.antimatter.net> <F6B50E9E-24D7-4600-9518-4E64E77B7327@redry.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>
next in thread | previous in thread | raw e-mail | index | archive | help
On 26 Sep 2005, at 21:43, Glenn Dawson wrote: >> Thanks. Sorry about the wrong list! Ive copied the contents below. >> > > I see a couple things, scroll down... > > > >> #!/bin/sh >> # >> # $FreeBSD: ports/databases/mysql41-server/files/mysql-server.sh.in,v >> 1.3 2005/04/11 08:47:36 ale Exp $ >> # >> >> # PROVIDE: mysql >> # REQUIRE: NETWORKING SERVERS >> # BEFORE: DAEMON >> # KEYWORD: shutdown >> >> # >> # Add the following line to /etc/rc.conf to enable mysql: >> # mysql_enable (bool): Set to "NO" by default. >> # Set it to "YES" to enable MySQL. >> # mysql_limits (bool): Set to "NO" by default. >> # Set it to yes to run `limits -e -U mysql` >> # just before mysql starts. >> # mysql_dbdir (str): Default to "/var/db/mysql" >> # Base database directory. >> # mysql_args (str): Custom additional arguments to be passed >> # to mysqld_safe (default empty). >> # >> >> . /etc/rc.subr >> >> name="mysql" >> rcvar=`set_rcvar` >> >> load_rc_config $name >> >> : ${mysql_enable="NO"} >> : ${mysql_limits="NO"} >> : ${mysql_dbdir="/var/db/mysql"} >> : ${mysql_args=""} >> >> mysql_user="mysql" >> mysql_limits_args="-e -U ${mysql_user}" >> pidfile="${mysql_dbdir}/`/bin/hostname`.pid" >> command="/usr/local/bin/mysqld_safe" >> command_args="--defaults-extra-file=${mysql_dbdir}/my.cnf --user=$ >> {mysql_user} -- >> > > There's an extra space after --user=$ > > >> datadir=${mysql_dbdir} --pid-file=${pidfile} $ {mysql_args} > /dev/ >> null &" >> > > another extra space after $ and before {mysql_args} > > Not sure if those were because of the way you pasted the file, or > if they are really there, but you'll want to check that out first. > > -Glenn It just the way it got pasted. I grabbed it from samba (yep, got that working :) )... theres no actual spaces in the file. Im not sure what David means? If i run pkg_info | grep mysql i see version 4.1.14 for client and server. Thanks Eoghan
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?03FB710F-26BA-494B-9C67-6D877DE57333>