rpm -qa | grep mysql // 这个命令就会查看该操作系统上是否已经安装了mysql数据
rpm -e mysql // 普通删除模式
rpm -e --nodeps mysql // 强力删除模式,如果使用上面命令删除时,提示有依赖的其它文件,则用该命令可以对其进行强力删除
yum install -y mysql-server mysql mysql-devel 安装服务端和客户端
rpm -qi mysql-server 查看安装的mysql
service mysqld start 启动mysql服务
service mysqld restart 重启myql服务
chkconfig --list | grep mysqld 查看mysql服务是不是开机自动启动
chkconfig mysqld on 设置mysqld服务开机启动
chkconfig --list | grep mysql 查看是否设置成功
mysqladmin -u root password 'root' 设置mysql 管理员密码为‘root’
mysql -u root -p 命令来登录我们的mysql数据库(需要敲入密码)
ls -l /etc/my.cnf 查看mysql的主配置文件
cd /var/lib/mysql/ | ls -l 查看数据库的数据库文件
cd /var/log 当中的mysql.log mysql数据库的一些日志输出存放位置都是在/var/log这个目录下
比较完整的参考http://www.33lc.com/article/6699.html
//允许别的机器访问数据库
1、mysql -u root -p
2、GRANT ALL PRIVILEGES ON *.* TO 'zhuolin'@'192.168.163.1' identified by '111111' WITH GRANT OPTION ;
3、FLUSH PRIVILEGES ;
//修改mysql 管理员的密码 set password=password('newpassword');
还需要开通端口
vim /etc/sysconfig/iptables
添加 -A INPUT -p tcp --dport 3306 -j ACCEPT
重启路由服务
service iptables restart