Mysql安装错误集合

1、错误信息:Cannot find appropriate system libraries for SSL

yum install �y openssl-devel ncurses ncurses-devel



2、mysql安装需求依赖包:

cmake make gcc gcc-c++ openssl-devel ncurses-devel



3、错误信息:Warning: Bison executable not found in PATH

   这是mysql语法规则模块

yum install bison


   #测试MySQL是否启动
   1、查看是否有进程mysql
   ps -ef | grep mysql
   2、查看端口是否运行
   netstat -tnl | grep 3306
   3、读取mysql版本信息
   mysqladmin version

你可能感兴趣的:(mysql安装错误)