PostgreSQL Database auto connect script
Below steps help you to connect the postgresql database automatically without any password prompt
Step 1. create the bash_profile: and set the postgres environment variable
[root@2ndquadrant.in]# cat .bash_profile export PGPASSWORD="nijam@345" export PGHOST="10.0.1.109" export PGUSER="enterprisedb" export PGPORT="5444" /opt/edb/as9.6/bin/psql -d edb
Step 2. Run the .bash_profile the this script directly will call the psql and connect the database without prompting any password
[root@2ndquadrant.in]# sh .bash_profile psql.bin (9.6.2.7) Type "help" for help. edb=# \dt List of relations Schema | Name | Type | Owner --------+---------+-------+-------------- public | dept | table | enterprisedb public | emp | table | enterprisedb public | jobhist | table | enterprisedb public | test | table | enterprisedb (4 rows)
Comments
Post a Comment