1.登录postgre SQL数据库 root@server2-virtual-machine:~# psql -U postgres -h 127.0.0.1 2.创建新用户zhaofeng,但不给建数据库的权限 postgres=# create user “zhaofeng” with password ‘123456’ nocreatedb; //注意用户名要用双引号,以区分大小写,密码不用 3.建立数据库,并指定所有者 postgres=# c...