怎样在任意目录输入MYSQL命令有效
[root@lu ~]# service mysqld start
Starting MySQL [ 确定 ]
[root@lu ~]# mysql -u root -p mysql
bash: mysql: command not found
[root@lu ~]# mysqladmin -u root -p
bash: mysqladmin: command not found
[root@lu ~]# /usr/local/mysql/bin/mysql -u root -p mysql
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9 to server version: 5.0.18-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
每次进入MYSQL都要这样才进去,好麻烦的.怎样在任意目录输入MYSQL命令有效呢?
是不是把/usr/local/mysql/bin/mysql这个路径添加到$PATH里去就可以了
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
# ln -s /path/mysql /bin/mysql
楼上的那步我已经做过
ln -s /usr/local/mysql/bin/ /usr/bin/mysql
但是现在还是没用
應該可以