发布于 2015-05-24 22:55:16 | 3049 次阅读 | 评论: 2 | 来源: PHPERZ
Mysql关系型数据库管理系统
MySQL是一个开放源码的小型关联式数据库管理系统,开发者为瑞典MySQL AB公司。MySQL被广泛地应用在Internet上的中小型网站中。由于其体积小、速度快、总体拥有成本低,尤其是开放源码这一特点,许多中小型网站为了降低网站总体拥有成本而选择了MySQL作为网站数据库。
[root@itcast02 itcast]# /etc/init.d/mysql restart //启动服务
ERROR! MySQL server PID file could not be found!
Starting MySQL................ ERROR! The server quit without updating PID file (/var/lib/mysql/itcast02.pid).//出错
[root@itcast02 itcast]#mysql -u root -p //登录
[root@itcast02 itcast]# /etc/rc.d/init.d/mysqld status //查看状态失败
bash: /etc/rc.d/init.d/mysqld: No such file or directory
[root@itcast02 itcast]#chown -R mysql:mysql /var/lib/mysql //设置权限
[root@itcast02 itcast]#/etc/init.d/mysql restart //重新启动
ERROR! MySQL server PID file could not be found!Starting MySQL...... SUCCESS! //启动成功
[root@itcast02 itcast]#mysql -u root -p //再次登录 成功