1.postgreSQL介紹:
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專(zhuān)注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、微信小程序開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了阿魯科爾沁免費(fèi)建站歡迎大家使用!
PostgreSQL是一個(gè)功能強(qiáng)大的開(kāi)源對(duì)象關(guān)系數(shù)據(jù)庫(kù)系統(tǒng),它使用并擴(kuò)展了SQL語(yǔ)言,并結(jié)合了許多安全存儲(chǔ)和擴(kuò)展最復(fù)雜數(shù)據(jù)工作負(fù)載的功能。
2.postgreSQL特點(diǎn):
免費(fèi),開(kāi)源,高度可擴(kuò)展性。數(shù)據(jù)完整性,并發(fā)性,可靠性,災(zāi)難恢復(fù)。安全。
3.postgreSQL安裝:
系統(tǒng)環(huán)境 ; Ubuntu16.04 LTS
使用源碼編譯安裝postgreSQL:
下載postgreSQL: # wget --no-cookies --no-check-certificate https://ftp.postgresql.org/pub/source/v9.5.14/postgresql-9.5.14.tar.gz 創(chuàng)建安裝的目錄: # mkdir /data/{services,packages,untar} -p 安裝依賴(lài)包: # apt-get install -y libreadline6-dev libxslt-dev zlib1g-dev systemtap-sdt-dev libxml2-dev 解壓軟件包: # tar -zxvf postgresql-9.5.14.tar.gz -C /data/untar/ # cd /data/untar/postgresql-9.5.14/ # ./configure --prefix=/data/services/postgresql9 \ --datarootdir=/data/services/postgresql9/postdata \ --with-pgport=5432 --with-python --with-libxml \ --with-libxslt --without-ldap --enable-thread-safety --enable-dtrace # make && make install //編譯并安裝 安裝完成后的提示: PostgreSQL installation complete.
設(shè)置postgresql共享庫(kù)搜索路徑:
方法1: 定義LD_LIBRARY_PATH的變量。 # export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/data/services/postgresql9/lib 方法2: 添加到共享庫(kù)文件: # cat /etc/ld.so.conf.d/postgresql.conf /data/services/postgresql9/lib #ldconfig //立即生效
庫(kù)文件在鏈接(靜態(tài)庫(kù)和共享庫(kù))和運(yùn)行(僅限于使用共享庫(kù)的程序)時(shí)被使用,其搜索路徑是在系統(tǒng)中進(jìn)行設(shè)置的。一般 Linux 系統(tǒng)把 /lib 和 /usr/lib 兩個(gè)目錄作為默認(rèn)的庫(kù)搜索路徑。ldconfig命令的作用就是將 /etc/ld.so.conf.d/*.conf 列出的路徑下的庫(kù)文件緩存到 /etc/ld.so.cache 以供使用。
linux系統(tǒng)添加共享庫(kù)詳解: https://blog.csdn.net/lu_embedded/article/details/56675653
查看共享庫(kù):
設(shè)置環(huán)境變量:
# echo "export PATH=$PATH:/data/services/postgresql9/bin" >> /etc/profile # source /etc/profile //立即生效。
創(chuàng)建postgres賬戶并設(shè)置密碼:
# useradd -d /data/services/postgresql9/ -M postgres # echo -e "123456\n123456" | passwd postgres 更改屬主和屬組: # chown -R postgres.postgres /data/services/postgresql9/
創(chuàng)建數(shù)據(jù)目錄和初始化數(shù)據(jù)目錄:
# mkdir /data/services/postgresql9/data # su - postgres $ bin/initdb -D /data/services/postgresql9/data/
修改配置文件: # grep -Ev '^[ ]*$|^#' /data/services/postgresql9/data/postgresql.conf data_directory = '/data/services/postgresql9/data' #數(shù)據(jù)庫(kù)安裝路徑,用于數(shù)據(jù)存儲(chǔ)的目錄 hba_file = '/data/services/postgresql9/data/pg_hba.conf' #基于主機(jī)的身份驗(yàn)證文件 ident_file = '/data/services/postgresql9/data/pg_ident.conf' #用戶名稱(chēng)映射的配置文件 external_pid_file = '/data/services/postgresql9/postgresql.pid' #用于管理程序的額外進(jìn)程pid文件 listen_addresses = '*' #指定服務(wù)器在哪些 TCP/IP 地址上監(jiān)聽(tīng)客戶端連接 port = 5432 #監(jiān)聽(tīng)數(shù)據(jù)庫(kù)的TCP端口 max_connections = 100 #最大連接數(shù)。 unix_socket_directories = '/tmp' #監(jiān)聽(tīng)來(lái)自客戶端連接的unix域的套接字目錄 shared_buffers = 128MB #設(shè)置數(shù)據(jù)庫(kù)服務(wù)器將使用的共享內(nèi)存緩沖區(qū)量,默認(rèn)值。 dynamic_shared_memory_type = posix #指定服務(wù)器使用shm_open分配的 POSIX 共享內(nèi)存。 log_line_prefix = '%t [%p-%l] %q%u@%d' # 設(shè)置日志輸出格式。 log_timezone = 'PRC' #設(shè)置數(shù)據(jù)庫(kù)日志文件在寫(xiě)日志文件時(shí)使用的時(shí)區(qū) datestyle = 'iso, ymd' #日期風(fēng)格,年月日 timezone = 'PRC' #設(shè)置服務(wù)端和客戶端時(shí)區(qū)。 lc_messages = 'en_US.UTF-8' #系統(tǒng)錯(cuò)誤消息的語(yǔ)言。 lc_monetary = 'zh_CN.UTF-8' #設(shè)置貨幣值的顯示格式的語(yǔ)言 lc_numeric = 'zh_CN.UTF-8' #設(shè)置用于格式化數(shù)字的語(yǔ)言。 lc_time = 'zh_CN.UTF-8' #設(shè)置用于格式化時(shí)間日期的語(yǔ)言。 default_text_search_config = 'pg_catalog.english' #選擇文本搜索功能所使用的文本搜索配置。
設(shè)置ubuntu16.04下系統(tǒng)的語(yǔ)言和編碼設(shè)置:
# apt-get install -y language-pack-zh-hant language-pack-zh-hans language-selector-gnome # dpkg-reconfigure locales 選擇zh_CN.UTF-8和en_US.UTF-8編碼。 編碼配置文件: /var/lib/locales/supported.d/ 該文件下有三個(gè)文件: en zh-hans zh-hant #dpkg-reconfigure --force locales 強(qiáng)制更新,使設(shè)置生效。
啟動(dòng)服務(wù):
$ bin/pg_ctl -D /data/services/postgresql9/data/ -l logfile start 或者: $ ./bin/postmaster -D /data/services/postgresql9/data > logfile 2>&1 &
2. 連接postgresSQL:
$ ./bin/psql
查看客戶端字符編碼:
查看服務(wù)端字符編碼:
PostgreSQL的控制臺(tái)命令:
\h : 查看SQL命令解釋。 \? : 查看psql命令列表。 \i sqlfile : 調(diào)用后綴為sql的文件并輸出。 \l : 列出所有數(shù)據(jù)庫(kù)。 \c [databasename] : 連接其他數(shù)據(jù)庫(kù)。 \d : 列出當(dāng)前數(shù)據(jù)庫(kù)的所有表. \d [tablename] : 列出表結(jié)構(gòu)。 \d+ [tablename] : 查看表基本情況。 \du : 列出所有用戶。 \e : 打開(kāi)文本編輯器。 \conninfo : 列出當(dāng)前數(shù)據(jù)庫(kù)和連接的信息。
標(biāo)題名稱(chēng):PostgreSQL安裝和基本使用(一)
當(dāng)前URL:http://aaarwkj.com/article26/goddcg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供服務(wù)器托管、網(wǎng)站導(dǎo)航、、ChatGPT、品牌網(wǎng)站設(shè)計(jì)、營(yíng)銷(xiāo)型網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)