Linux 串連SQL Server資料庫 並配置laravel進行串連

來源:互聯網
上載者:User

標籤:style   blog   http   color   io   使用   ar   strong   檔案   

一、安裝freetds     1、安裝編譯工具及驅動程式  

    yum install make apr* autoconf automake gcc gcc-c++ wget

  2、安裝unixODBC驅動程式

    yum -y install unixODBC unixODBC-devel

  3、安裝freetds

    cd /usr/local/src

    wget ftp://ftp.freetds.org/pub/freetds/stable/freetds-stable.tgz #下載,有時用wget命令下載不了

    gunzip freetds-stable.tgz #解壓

    tar -xvf freetds-stable.tar

    cd freetds-0.91

    ./configure --prefix=/usr/local/freetds --with-tdsver=8.0 --with-unixodbc=/usr --enable-msdblib #配置

    make #編譯

    make install #安裝

  4、配置freetds

    cp /usr/local/freetds/etc/freetds.conf /usr/local/freetds/etc/freetds.confbak #備份原有檔案

    vi /usr/local/freetds/etc/freetds.conf #在最後位置修改編輯以下內容

    

    tds version = 8.0 #8.0代表資料庫版本為SQL Server 2000,這裡我改成11.0有問題,所有不要改,使用預設的,我用的7.0沒有問題

二、測試freetds

/usr/local/freetds/bin/tsql -S 192.168.0.242 -U hft_test #測試,提示輸入資料庫密碼

     三、安裝mssql擴充     進入安裝包中的mssql --> phpize  --> ./configure --with-php-config=/usr/local/php5/bin/php-config --with-mssql=/usr/local/freetds 

四、laravel架構需要安裝pdo_dblib.so

     進入安裝包中的dblib  -->  phpize  --> ./configure --with-php-config=/usr/local/php-5.4.12/bin/php-config --with-pdo-dblib=/usr/local/freetds 五、leravel架構配置     

Linux 串連SQL Server資料庫 並配置laravel進行串連

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.