[参考文章]:mysql修改root密码和设置权限 1. 修改密码 1.1 set password 登录mysql set password for 用户名@localhost = password('新密码'); 1.2 mysqladmin mysqladmin -u用户名 -p旧密码 password 新密码 1.3 user表 mysql> use mysql; mysql> update user set password=password('新密码') where user='…
设置pgsql默认用户posgres的密码 1.确认pgsql是开启的 /etc/init.d/postgresql status 2.使用默认用户登录 sudo su postgres 3.进入psql客户端 命令为 sudo -u postgres psql 进入之后就可以写sql了 4.执行第三步如果出现“postgres is not in the sudoers file. This incident will be reported.”提示则需要在sudoers里面加上postgr…
登录MySQL时报错:Access denied for user 'root'@'localhost' (using password: YES) 解决步骤: 1.使用ssh工具连接主机,使用mysqld_safe命令进入安全模式: Last login: Thu Jun :: from 182.50.118.228 [root@VM_219_131_centos ~]# service msyqld status msyqld: unrecognized service [root@VM_2…
应用范围:可以在命令行直接使用密码来进行远程连接和远程拉取文件. 使用前提:对于未连接过的主机.而又不输入yes进行确认,需要进行sshd服务的优化: # vim /etc/ssh/ssh_config StrictHostKeyChecking no # vim /etc/ssh/sshd_config GSSAPIAuthentication no UseDNS no # service sshd restart sshpass 命令的安装: # yum -y install sshpa…
PostgreSQL10配置远程连接 psql --version centos7.3中 1.开启相应的防火墙端口,允许端口5432 2.访问权限配置/etc/postgresql/10/main/下的pg_hba.conf # TYPE DATABASE USER ADDRESS METHOD # "local" is for Unix domain socket connections only local all all peer # IPv4 local connect…