Linux下安裝perl的DBI和DBD

來源:互聯網
上載者:User

在Linux虛擬機器上安裝了Oracle的client端,需要用perl來抓取資料庫中的資料,於是需要安裝perl的DBI和DBD包,分別是DBI-1.616和DBD-Oracle-1.28。需要使用root安裝DBI和DBD,在安裝前,確保.bash_profile中root的環境變數,已經設定了ORACLE_HOME(oracle的client端路徑),ORACLE_SID(你需要串連的庫名),LD_LIBRARY_PATH(oracle的client端下的lib路徑)的位置。而且要把Linux下的oracle的設定檔tnsnames.ora裡需要登入的db中的SERVICE_NAME換成SID(這是和windows的配置不同)。
進入DBI的路徑下:
 perl Makefile.PL
 make
 make test
 make install
進入DBD的路徑下:
 perl Makefile.PL
 make
 make test
 make install
在安裝的過程中會有一些警告,別擔心
最後將lib增加到ld.so.conf中,並生效它。
echo (oracle的client端的lib) >> /etc/ld.so.conf (這個設定檔案是系統搜尋動態串連庫的目錄設定,在這個檔案裡面寫下的地址系統在運行程式時會自動去這些個目錄裡面找需要的動態庫檔案。)

ldconfig(用於更改完之後更新庫緩衝,這樣才能在cache中找到新的庫的路徑)在用其他使用資料庫時,環境變數應與root保持一致。

相關文章

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.