Difference between revisions of "EOF"

From wikieduonline
Jump to navigation Jump to search
 
(20 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
 +
[[cat]] > [[/etc/openvpn/server/development.conf]] <<EOF
 +
your first line
 +
your second line
 +
EOF
  
  
 +
cat <<\EOF /path/to/file.txt
  
 
  [[psql -h]] you_dp_ip [[-U postgres]] [[-p 5432]]  << EOF
 
  [[psql -h]] you_dp_ip [[-U postgres]] [[-p 5432]]  << EOF
Line 10: Line 16:
 
  EOF
 
  EOF
  
Related:  
+
* [[Restore DB]]:
  [[ALTER TABLE]]
+
  [[gunzip]] < your_latest_backup[[.gz]] | [[psql -h]] YOUR_DB_ENDPOINT -U your_user -d your_db
ERROR:  role "NONEXITSROLE" does not exist
+
 
WARNING:  [[no privileges could be revoked for]] "public"
+
 
  [[REVOKE]]
+
  [[sudo -u postgres]] [[--]] bash -c "psql -c 'CREATE database tsdb'"
[[WARNING]]:  no privileges were granted for "public"
+
  sudo -u postgres -- bash -c "psql tsdb -c 'CREATE EXTENSION IF NOT EXISTS timescaledb;'"
  GRANT
 
ERROR:  role "your_sole" does not exist
 
  
  
 
== Related ==
 
== Related ==
 
* <code>[[eof]]</code>
 
* <code>[[eof]]</code>
 +
* <code>[[sudo -u postgres]]</code>
 +
* <code>[[EOT]]</code>
 +
* <code>[[blockinfile:]]</code>
 +
* <code>[[read]]</code>
 +
* <code>[[datadog_monitor_json]]</code>
  
 
== See also ==
 
== See also ==
* {{cat}}
+
* {{EOF}}
 
* {{GRANT}}
 
* {{GRANT}}
  
 
[[Category:Computing]]
 
[[Category:Computing]]

Latest revision as of 07:14, 9 July 2024

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


cat <<\EOF /path/to/file.txt
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[edit]

See also[edit]

Advertising: