在做LAMP实验的过程中,配置MySQL,提示如下错误:
[root@localhost /]# /usr/local/mysql/bin/mysqld_multi start 1,2,3
WARNING: my_print_defaults command not found.
Please make sure you have this command available and
in your path. The command is available from the latest
MySQL distribution.
ABORT: Can't find command 'my_print_defaults'.
This command is available from the latest MySQL
distribution. Please make sure you have the command
in your PATH.
解决办法是输入如下命令:
[root@localhost /]# export PATH=/usr/local/mysql/bin:$PATH
将/usr/local/mysql/bin加到$PATH环境变量里