linux(centos) 下安装phpstudy 如何命令行进入mysql
配置了phpstudy 可是进不去mysql 老是报-bash: mysqld: command not found
解决方法:在linux环境下运行:ln -s /phpstudy/mysql/bin/mysql /bin
然后进入mysql目录 运行mysql/bin/mysql -u root -p 进入
如果你还需要进行更给密码的话直接更改user表中root用户就行但是密码是需要password的否则是不对的啊
mysql> use mysqlDatabase changedmysql> update user set password=password("Gjanuary") where user='root';Query OK, 4 rows affected (0.00 sec)