Hello,

There is a documentation error the MySQL manual:

--------------------------------------------------------------
4.6 Installing a MySQL Binary Distribution

9.Change ownership of the installation directory to the user that you will
run mysqld as: 

       shell> chown -R mysql /usr/local/mysql
       shell> chgrp -R mysql /usr/local/mysql

--------------------------------------------------------------

This will not work since /usr/local/mysql is a symbolic link and
at least the GNU versions of chown -R and chgrp -R do not work
with symbolic links. The manual should say:

       shell> chown -R mysql /usr/local/mysql-VERSION-OS
       shell> chgrp -R mysql /usr/local/mysql-VERSION-OS

--------------------------------------------------------------

Thanks,

Neil


-- 
---------------------------------------------------------------------
Please check "http://www.mysql.com/documentation/manual.php" before
posting. To request this thread, e-mail [EMAIL PROTECTED]

To unsubscribe, send a message to:
    <[EMAIL PROTECTED]>

If you have a broken mail client that cannot send a message to
the above address (Microsoft Outlook), you can use:
    http://lists.mysql.com/php/unsubscribe.php

Reply via email to