Date: Thu, 19 Aug 1999 02:10:19 +0300 (EEST) From: Jani Tolonen <janikt@saunalahti.fi> To: Dick Griffin <dick@dgriffin.org> Cc: mysql@lists.mysql.com, freebsd-questions@freebsd.org Subject: ??? StreamServer Port: ... errno 48 Message-ID: <14267.15418.564707.279016@janikt.pp.saunalahti.fi> In-Reply-To: <Pine.BSF.4.10.9908181225120.338-100000@dgriffin.org> References: <Pine.BSF.4.10.9908181225120.338-100000@dgriffin.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Dick Griffin writes: > folks, > > I'm still struggling, and decided a re-boot was in order, and upon reboot > recievd the following message as my FreeBSD3.2 system attemped to starts > the mysqld, > > mysqlFATAL: StreamServerPort: bind() failed errno = 48 > > It asked me if I has a'another postmaster already running on that port' > > I used a default insallation from the FreeBSD packages, and am not sure > how that, or what that means. > > Thanks for being patient with me, > > Dick Griffin > At Home > Hello Dick, Seems as if you have some other program listening on the same TCP/IP port that MySQL server is trying to use. Please try changing the default values. (Defaults are: TCP/IP port = 3306, UNIX_SOCKET = /tmp/mysql.sock) Just in case change both and start mysqld for example like: mysqld --port=3307 --socket=/tmp/mysql.sock2 (and the other options if needed) Then try connection using 'mysql --port=3307 --socket=/tmp/mysql.sock2' See mysqld --help. You can find more information from the manual. Regards, - Jani -- +-------------------------------------------------------------+ | TcX ____ __ _____ _____ ___ | | /*/\*\/\*\ /*/ \*\ /*/ \*\ |*| Jani Tolonen | | /*/ /*/ /*/ \*\_ |*| |*||*| jani@mysql.com | | /*/ /*/ /*/\*\/*/ \*\|*| |*||*| Helsinki | | /*/ /*/ /*/\*\_/*/ \*\_/*/ |*|_____ Finland | | ^^^^^^^^^^^^/*/^^^^^^^^^^^\*\^^^^^^^^^^^ | | /*/ \*\ Developers Team | +-------------------------------------------------------------+ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?14267.15418.564707.279016>