Difference between revisions of "EOF"
Jump to navigation
Jump to search
(Created page with " psql -h you_dp_ip -U postgres -p 5432 << EOF CREATE DATABASE "yourdbname"; CREATE USER yourusername WITH PASSWORD yourpassword; GRANT ALL PRIVILE...") |
|||
Line 11: | Line 11: | ||
+ | == Related == | ||
+ | [[eof]] | ||
− | [[ | + | == See also == |
+ | * {{cat}} | ||
+ | |||
+ | [[Category:Computing]] |
Revision as of 13:25, 23 June 2022
psql -h you_dp_ip -U postgres -p 5432 << EOF CREATE DATABASE "yourdbname"; CREATE USER yourusername WITH PASSWORD yourpassword; GRANT ALL PRIVILEGES ON DATABASE "yourdbname" to yourusername; GRANT ALL PRIVILEGES ON SCHEMA public to yourusername; GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO yourdbname; EOF
Related
See also
Advertising: