Redhat6 安裝postgresql

來源:互聯網
上載者:User

標籤:postgresql



yum install http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-redhat94-9.4-1.noarch.rpm



yum install postgresql-server


發現如下問題:Error: Package: postgresql93-contrib-9.3.5-1PGDG.rhel6.i686 (pgdg93) Requires: libcrypto.so.10(libcrypto.so.10) 

su postgres


yum install http://mirror.centos.org/centos/6/os/x86_64/Packages/openssl-1.0.1e-30.el6.x86_64.rpm


yum install postgresql-server
service postgresql-9.4 initdb
chkconfig postgresql-9.4 on


find / -name ‘pg_hba.conf‘


vim /var/lib/pgsql/9.4/data/pg_hba.conf


# "local" is for Unix domain socket connections only

local   all             all                                     trust

# IPv4 local connections:

host    all             all             127.0.0.1/32              md5

host    all             all             172.22.8.51/24            md5

host    all             all             172.10.23.27/24           md5

host    all             all             172.22.14.51/24           md5



vim /var/lib/pgsql/9.4/data/postgresql.conf


listen_addresses = ‘*‘


su postgres


psql


postgres=#alter user postgres with password ‘new password‘;  

postgres=#\q  


yum install postgresql-odbc



=====================================================================



wget ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.2.tar.gz


tar xvf unixODBC-2.3.2.tar


cd unixODBC-2.3.2

./configure --prefix=/usr/local/unixODBC-2.3. --includedir=/usr/include --libdir=/usr/lib -bindir=/usr/bin --sysconfdir=/etc
make
make install


這時,unixodbc已經安裝完畢,這時候可以使用odbc的通用api進行編程了。

但是如果要操作具體的資料庫,還需要相應資料庫提供的odbc驅動,比如操作mysql的ODBC驅動,是:http://dev.mysql.com/downloads/connector/odbc/5.1.html。






Redhat6 安裝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.