From: terry jones Date: April 12 1999 4:13am Subject: misleading socket info in INSTALL-SOURCE List-Archive: http://lists.mysql.com/mysql/1674 Message-Id: <199904120413.VAA01151@cliffs.ucsd.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi. The file INSTALL-SOURCE in the mysql distribution contains the following (line 960): | * If you want your sockets located somewhere other than the default | location (normally `/tmp' or `/var/run'), use a `configure' command | like this: | shell> ./configure --with-unix-socket-path=/path/to/socket/dir | `/path/to/socket/dir' must be an absolute pathname. This makes it sound like the argument to --with-unix-socket-path should be a directory (containing several sockets). But that's not the case. The argument should give the file name. safe_mysqld removes (or attempts to) whatever you pass to configure with this option. Suggested new wording: * If you are using UNIX and you want the MySQL socket located somewhere other than the default location (normally in the directory `/tmp' or `/var/run'), use a `configure' command like this: shell> ./configure --with-unix-socket-path=/path/to/socket/file `/path/to/socket/file' must be an absolute path. Regards, Terry.