centos mysql 实战 第一节课 安全加固 mysql安装 percona名字的由来=consultation 顾问+performance 性能=per con a mysql官方手册:http://dev.mysql.com/doc/refman/5.7/en/datetime.html mysql_install_db是一个perl脚本 http://mp.weixin.qq.com/s?__biz=MzI3MTAxMTY5OA==&mid=2671913078&…
系统环境: 计算机ip:192.168.1.105 CentOS+Mysql 远程计算机ip:192.168.1.118 Win7+MySQLWorkbench 登陆服务器:bin/mysql -u root -p 使用服务器:mysql> use mysql 创建远程登陆用户并授权 : mysql> grant all PRIVILEGES on ecshop.* to root@'192.168.1.118 设置完后,Win7主机通过workbench 就可以远程访问linux…
登录MySQL: mysql -u root -p db; 如需修改密码,第一次: mysqladmin -u root password NEWPASSWORD 已设置过: mysqladmin -u root -p 'oldpassword' password newpassword 执行以下命令开启远程访问限制 grant all privileges on *.* to 'root'@'192.168.0.1' identified by 'password' with gran…