Home  >  Article  >  Backend Development  >  Ubuntu configures development environment through APT_PHP tutorial

Ubuntu configures development environment through APT_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:36:36716browse

apt-get install vimapt-get install ssh
apt-get install apache2
apt-get install redis-server
apt-get install subversion
apt-get install git-coreapt-get install php5apt-get install php5-gd
apt-get install php-pear
apt-get install php5-mysql
apt-get install libmysqlclient-dev

wget http://www.unixodbc.org/unixODBC-2.3.2.tar.gz
wget ftp://ftp.freetds.org/pub/freetds/stable/freetds-stable.tgz
wget pecl.php.net/get/PDO_MYSQL-1.0.2.tgz
wget pecl.php.net/get/PDO_ODBC-1.0.1.tgz
git clone https://github.com/nicolasff/phpredis

phpize
./configure --prefix=/usr/local/unixODBC./configure --prefix=/usr/local/freetds --with-unixodbc=/usr/local/unixODBC/ --with-tdsver=7.0
./congigure --with-php-config=/usr/bin/php-config5 --with-pdo-odbc=unixODBC,/usr/local/unixODBC(如果错误,则试着修改congigure,更改相关的路径)
odbc.ini
[TEST1dsn]
Driver = /usr/local/freetds/lib/libtdsodbc.so
Description = First Test DSN
Trace = No
Servername = myserver
Database = 51fanli
UID = trace
freetds.conf
[myserver]
    host = mdb.zz.51fanli.it
    port = 1433
    tds version = 7.0

测试
redis-cli
/usr/local/unixODBC/bin/isql -v TEST1dsn trace trace
/usr/local/freetds/bin/tsql -S myserver -U trace -P trace

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/738523.htmlTechArticleapt-get install vimapt-get install ssh apt-get install apache2 apt-get install redis-server apt-get install subversion apt-get install git-coreapt-get install php5apt-get install ph...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn