MySQL默认的超级管理员是root
连接方法:mysql -u root
默认密码为空
修改密码的方法:mysqladmin -u root password 'new password'

PostgreSQL默认的超级管理员密码是postgres
连接方法:psql -U postgres(注意,是大写的-U)
默认密码为空
修改密码的方法是,

     #su - postgres

   -bash-3.2$psql -U postgres 或使用psql
然后用这样的命令来修改密码:alter user postgres with password 'new password';