需要 root 权限
查看有没有安装过 mysql
1 | yum list installed mysql* |
查看有没有安装包
1 | yum list mysql* |
安装 mysql 客户端
1 | yum install mysql-server |
如果报错 mysql-community.repo not find
1 | wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm |
mysql 初始化
1 | /usr/bin/mysql_install_db --user=mysql & |
启动 mysql
1 | service mysqld start |
停止 mysql
1 | service mysqld stop |
设置密码
1 | mysqladmin -u root password xxx |
登录
1 | mysql -u root -p |
相关目录
1 | 数据库目录: /var/lib/mysql/ |
错误排查
1 | 配置文件: |
安装 php mysql 扩展
1 | wget http://cn2.php.net/distributions/php-7.0.28.tar.gz |