Connect Cloud Server with SSH,change the password of user postgres
    _

    1. #Switch to postgres user of OS,and run psql command
    2. sudo -u postgres psql
    3. #modify the password of postgres
    4. ALTER USER postgres WITH PASSWORD 'postgres';
    5. #exit psql
    6. \q