yum安装mysql后,哪个DIR是MySQL基本目录


6

似乎我无法找到mysql DIR下只有一堆二进制文件 /usr/bin

yum以前安装

mysql
mysql-server
mysql-devel

并尝试安装,mysql而我/init.d/mysqld以前已经启动过它。

但是,当我想编译PHP时,该选项--with-mysql需要mysql的基本DIR ...在哪里使用? /usr/bin

Answers:


3

您应该运行此命令

mysqladmin -uroot variables | grep datadir | sed 's/|/ /g' | awk '{print $2}'

查找默认数据目录。

如果您仍无法登录到mysql,则仍然可以运行

which mysqld
which mysqld_safe

找到二进制文件。

试试看 !!!


1

您是否尝试过:/usr/local/mysql/bin


/ usr / local下没有mysql目录

您是否在/ usr / bin中查找二进制文件?
贾斯汀·皮尔斯

是的,那是我认为已将MySQL yum安装文件安装到的唯一位置

根据发行版和/或软件包的不同,通常会将内容放入/ usr / bin或/ usr / local / bin中。很高兴你把事情解决了!
贾斯汀·皮尔斯
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.