安裝完成之後,會在mac的應用程式**現如下程式:
此時執行其中的sql shell(psql)啟動postgresql。
$ /library/postgresql/11/scripts/runpsql.sh ;exit
server [localhost]:
database [postgres]:
port [5432]:
username [postgres]:
password for user postgres:
psql (11.3)
type "help" for help.
postgres=#
以server為例,命令中預設為「server [localhost]: 」,表示server的預設配置值為中括號內的localhost。除了其中的password需要輸入密碼,其他選項如無特殊需要,採用預設即可。
此時,再執行應用程式中圖示為大象的pgadmin 4,可啟動管理postgresql的管理程式。
即可開啟web管理介面。
在下圖中輸入密碼,即可進入管理介面進行相應的操作。比如,可通過下圖建立表等操作。
postgre 的安裝步驟
1.為 了安全考 慮,postgresql 不能以root 使用者 執行,所以必須建立 對應的使用者和 組。useradd postgre 自動建立 postgre 組,必須為root許可權 2.安裝的過程 解壓到 usr local src tar xvfz postgresql 8.0.1.ta...
postgre基本用法(一)
1 啟動postgre service postgresql start2 以postgres使用者登入 su postgres psql l 檢視當前的資料庫列表 d 當前資料庫下的所有表 q 退出3 以git使用者登入 su git4 psql d gitlabhq production u g...
遠端連線 Gitlab安裝的 PostgreSQL
預設預設情況下,gitlab 使用者使用的是 peer authentication 這意味著客戶端只能以 postgresql 所在主機上的linux系統賬號訪問資料庫,無法遠端訪問。這裡為了安全,我們使用的是password md5 authentications的認證方式 1 設定postgr...