1.创建用户语法 : create user ‘写你自己的用户名’@‘写你需要哪个IP连接你的用户(%表示所有)’ identified by ‘密码’; 案例: create user ‘wangxiang’@’%’ indentified by ‘123’; 2.给这个用户授权语法 : grant 权限 on 数据库.数据表 to ‘用户名’@‘ip’ 后面那个允许这个用户授权给另外的用户 with grant option; 案例1不允许这个用户给其他用户授权 : grant all pr…
最近同事需要在单位提供的开发机上临时安装gcc等软件,时间紧迫,因此向其推荐安装福利devtoolset. 感谢devtoolset,使得CentOS软件安装无比的快捷,卸载也是无与伦比的简单. gcc 7.3.1安装 # 1. Install a package with repository for your system: # On CentOS, install package centos-release-scl available in CentOS repository: $ su…