PostgreSQL常規操作

來源:互聯網
上載者:User

標籤:postgresql   ssh   django   

  1. 添加除了postgres超級使用者以外的使用者。

    createuser -drSP testuser

  2. 為使用者建立專屬資料庫

    createdb -O testuser testdb


備份恢複資料時,應當以postgres超級使用者進行,避免發生一些權限類別的報錯。


ssh免密碼登陸:

如想在A機器上登入到B:

  1. 在A機器上產生公開金鑰和私密金鑰 # ssh-keygen -t rsa

  2. 將產生的 id_rsa.pub 公開金鑰copy為authorized_keys。# cp id_rsa.pub authorized_keys

  3. 將authorized_keys scp 到B機器的~/.ssh/目錄下,追加到已有的authorized_keys檔案中。若無,自行建立一個即可。



Django報錯資訊如下:

IntegrityError at (some url): duplicate key value violates unique constraint "krypdos_value_pkey"

解決方案:

SELECT setval(‘tablename_id_seq‘, (SELECT MAX(id) FROM tablename)+1)


本文出自 “藍鰭豚” 部落格,請務必保留此出處http://likunheng.blog.51cto.com/9527645/1589035

PostgreSQL常規操作

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.