lsblk命令详解查看未挂载的磁盘 linux • 3年前 (2019-10-28) lsblk命令详解查看未挂载的磁盘, lsblk 主要命令格式 $lsblk -l : 以列表方式显示 阅读 2,215 次
Linux配置fstab自动挂载字段说明 linux • 3年前 (2019-10-28) Linux配置fstab自动挂载字段说明 路径: /etc/fstab 自动挂载信息保存在文件/etc/fstab文件 中 每条记录对应一个挂载,每条记录有六个字段,分别存储信息... 阅读 887 次
For more details see su linux • 3年前 (2019-10-28) For more details see su有关更多详细信息,请参见su。 For more details see su有关更多详细信息,请参见su。 出现以下问题 su 在切换账号时“-” 后面少个空格... 阅读 310 次
Linux开启mysql端口3306的防火墙,通过。 linux | mysql • 3年前 (2019-10-26) Linux开启mysql端口3306的防火墙 开启3306防火墙 firewall-cmd --zone=public --add-port=3306/tcp --permanent 重启防火墙 firewall-cmd --reload ... 阅读 499 次
linux下修改mysql 用户名密码 linux | mysql • 3年前 (2019-10-26) linux下修改mysql 用户名密码 登陆mysql 执行以下命令 mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '这里是要设置的密码'; 阅读 361 次
linux修改mysql密码包含策略规则 linux | mysql • 3年前 (2019-10-26) linux修改mysql密码包含策略规则 登陆mysql mysql -uroot -p 执行一下命令 mysql>set global validate_password_policy=0;mysql>set global validate_passwo... 阅读 402 次
linux查看mysql默认安装密码命令 linux | mysql • 3年前 (2019-10-26) linux查看mysql默认安装密码 cat /var/log/mysqld.log |grep password 阅读 353 次