Difference between revisions of "EOF"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 24: Line 24:
 
== Related ==
 
== Related ==
 
* <code>[[eof]]</code>
 
* <code>[[eof]]</code>
[[sudo -u postgres]]
+
* <code>[[sudo -u postgres]]</code>
 +
* <code>[[EOT]]</code>
  
 
== See also ==
 
== See also ==

Revision as of 07:57, 7 March 2023

cat > /etc/openvpn/server/development.conf <<EOF
your first line
your second line
EOF


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
gunzip < your_latest_backup.gz | psql -h YOUR_DB_ENDPOINT -U your_user -d your_db


sudo -u postgres -- bash -c "psql -c 'CREATE database tsdb'"
sudo -u postgres -- bash -c "psql tsdb -c 'CREATE EXTENSION IF NOT EXISTS timescaledb;'"


Related

See also

Advertising: