1.配置MySQL环境变量

1.配置MySQL环境变量

shell> touch /etc/profile.d/mysql.sh
shell> echo 'export PATH=$PATH:/usr/local/mysql/bin' > /etc/profile.d/mysql.sh
shell> source /etc/profile.d/mysql.sh

2.验证是否配置成功

shell> mysql --version
mysql  Ver 14.14 Distrib 5.5.51, for linux2.6 (x86_64) using readline 5.1

你可能感兴趣的:(1.配置MySQL环境变量)