1. 개요 CentOS7에 FreeTDS 설치 TDS(Tabular Data Stream) 패킷으로 MSSQL과 통신 2. 설치 yum install epel-release yum install freetds freetds-devel php-mssql 3. 설정 vi /etc/freetds.conf ; 추가 # A typical Microsoft server [mssql] ; 접속할 서버 이름 정의 host = 192.168.0.11 ; 접속할 서버 IP port = 1433 ; 접속 포트 tds version […]
Category: CentOS
APM source 설치 (A 1.3.37 / P 4.4.2 / M 4.0.27) on CentOS
1. 개요 APM source 설치 Apache : 1.3.37 / PHP : 4.4.2 / MYSQL : 4.0.27 2. apache 1.3.37 설치 = Site : https://archive.apache.org/dist/httpd/ cd /usr/local/src/ wget https://archive.apache.org/dist/httpd/apache_1.3.37.tar.gz tar zxvf apache_1.3.37.tar.gz ./configure –prefix=/usr/local/apache-1.3.37 –enable-module=so make make install 3. mysql 4.0.27 설치 = Site : http://ftp.linux.co.kr/pub/mysql/ cd /usr/local/src/ wget http://ftp.linux.co.kr/pub/mysql/mysql-4.0.27.tar.gz tar zxvf mysql-4.0.27.tar.gz vi […]
Install PHP7 on CentOS7
1. 설치 yum install epel-release sudo rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm yum install php71w php71w-cli php71w-devel php71w-bcmath php71w-common php71w-mcrypt php71w-domxml php71w-gd php71w-imap php71w-mbstring php71w-xmlrpc php71w-pear “Image*” * PHP 모듈 설치 : php71w-모듈이름 2. apache 재시작 sudo systemctl restart httpd.service
APM source 설치 (A 2.2.24 / P 5.2.16 / M 5.1.69) on CentOS
1. 개요 APM source 설치 Apache : 2.2.24 / PHP : 5.2.16 / MYSQL : 5.1.69 – httpd 2.2.24 – php 5.2.16 – mysql 5.1.69 yum install expat-devel ncurses ncurses-devel openssl-devel libxml2-devel curl-devel gdbm-devel libc-client-devel krb5-devel libjpeg-devel bzip2-devel openssl-devel libpng-devel freetype-devel ncurses-devel libc-client-devel gdbm-devel pcre-devel gcc enchant-devel libXpm-devel libicu-devel openldap-devel readline-devel libtidy libtidy-devel libxslt-devel yum […]
APM source 설치 (A 2.4 / P 5.6 / M 5.7) on CentOS
1. 개요 APM source 설치 Apache : 2.4 / PHP : 5.6 / MYSQL 5.7 – httpd 2.4 wget http://mirror.navercorp.com/apache//httpd/httpd-2.4.29.tar.gz – php 5.6 wget http://kr1.php.net/get/php-5.6.32.tar.gz/from/this/mirror -O php-5.6.32.tar.gz – mysql 5.7 wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.20.tar.gz –no-check-certificate yum install expat-devel ncurses ncurses-devel openssl-devel libxml2-devel curl-devel gdbm-devel libc-client-devel krb5-devel libjpeg-devel bzip2-devel openssl-devel libpng-devel freetype-devel ncurses-devel libc-client-devel gdbm-devel pcre-devel gcc […]