目標作業系統:centos 6.5 64bit
mysql和postgresql預設安裝
mysql超級管理員預設名稱:root
#mysql -u root
預設密碼為空,
修改方法:
# mysqladmin -u root password 'new password'
postgresql超級管理員預設使用者為postgres,需要以該使用者身份操作:
#su postgres
bash-4.1$ psql
postgres=# alter user postgres with password 'new password'
postgresq預設安裝目錄為 /var/lib/pgsql/data ,該目錄下的pg_hba.conf內,method欄位應該為trust,以支援輸入密碼訪問資料庫,如果值為ident,需要參照下面內容修改:
# type database user cidr-address method
# "local" is for unix domain socket connections only
local all all trust
# ipv4 local connections:
host all all 127.0.0.1/32 trust
# ipv6 local connections:
host all all ::1/128 trust
修改配置檔案後,重新啟動資料庫服務:
#service postgresql restart
連線資料庫:
# psql -u postgres -w(-u選項為大寫)
使用perl連線和操作postgresql資料庫
使用環境 linux opensuse 1 檢查安裝環境 1 查詢dbi zypper search dbi 安裝dbi zypper search perl dbi 2 查詢dbd pg zypper search dbd 安裝dbd pg zypper install perl dbd pg 2...
再見 MongoDB,你好 PostgreSQL
olery 差不多成立於5年前。始於ruby 開發的單一產品 olery reputation 隨著時間的推移,我們開始致力於一系列不同的產品和應用程式。當今,我們的產品不僅有 olery reputation,還有olery feedback,hotel review data api,widge...
把pgboucer做成postgresql服務
把pgbouncer啟動命令加入到postgresql服務配置裡面。這樣方便操作 vi etc init.d postgresql 加入如下紅色命令。路徑換成你的pgbouncer安裝目錄 case 1 instart echo n starting postgresql test e pg oom...