Re: MySQL Port Question

2007-01-10 Thread Andrew Pantyukhin
On 1/10/07, Stan Halprin [EMAIL PROTECTED] wrote: Hello; I'm trying to build MySQL 5.0 (server) on FBSD 6.1 from port. I ran make install clean but now I'm lost. mysqld is not up. What is my username? Never asked me for one in the install. Tried this: # /usr/local/libexec/mysqld -umysql

Re: MySQL Port Question

2007-01-10 Thread George Vanev
Check if user mysql exists. If it doesn't - create it. # echo 'mysql_enable=YES' /etc/rc.conf #cd /usr/local/mysql #bin/mysql_install_db --user=mysql #chown -R root . #chown -R mysql var #chgrp -R mysql . #bin/mysqld_safe --user=mysql #bin/mysqladmin -u root password '' #bin/mysql grant all

Re: MySQL Port Question

2007-01-10 Thread Stan Halprin
- Original Message From: George Vanev [EMAIL PROTECTED] From: Andrew Patyukhin Andrew: /usr/local/etc/rc.d/mysql-server start Worked. MySQL up! Thanks! George: Since MySQL is up, I don't know if the following matters any more, nonetheless... Check if user mysql exists. If it doesn't -