Re: Path Environment Variable On Wed, 06 Apr 2005 11:26:39 +0000, Murphy wrote:
> I have just uninstalled and reinstalled MySQL
>
> Part of the installation required the directory to be added to the PATH
> environment variable.
>
> setenv PATH ${PATH}:/usr/local/mysql/bin
>
> The directory referenced in the command above is correct.
You might want to add to the PATH the way Slackware packages do it. They
put files in /etc/profiles.d which are run by the login scripts. For
example, the tetex package adds files tetex.sh (which is used if you shell
is bash) and tetex.csh (for csh). In the file tetex.sh is
#!/bin/sh
# Add PATH and MANPATH for teTeX:
PATH="$PATH:/usr/share/texmf/bin"
MANPATH="$MANPATH:/usr/share/texmf/man"
You could manually add a similar file for MySQL.
Mike |