Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- html
- 안드로이드
- curl
- 리눅스
- NetBeans
- 톰캣
- ajax
- larravel
- File
- 와일드카드
- java
- junit
- javascript
- Android
- laravel
- Spring
- 정규식
- php
- jquery
- tomcat
- JSON
- SeLinux
- CentOS
- 이클립스
- Linux
- MySQL
- input
- DB
- properties
- error
Archives
- Today
- Total
합쭈기 programming
[PHP] 서버 환경 셋팅 (CentOS7) 본문
Mysql 5.6 버전 설치
# rpm -ivh http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# yum install mysql-community-server
php 5.6 설치를 위한 remi-repository 추가
# yum -y install epel-release
# cd /etc/yum.repos.d
# wget http://rpms.famillecollet.com/enterprise/remi.repo
php 5.6 및 apache 설치
# yum -y --enablerepo=remi,remi-php56 install httpd php php-common
php 5.6 extension 설치
# yum --enablerepo=remi,remi-php56 install php-mbstring
# yum --enablerepo=remi,remi-php56 install php-xml
'PHP' 카테고리의 다른 글
| [cURL] response 0 bytes (0) | 2018.08.01 |
|---|---|
| [PHP] sendmail 오류 (0) | 2017.08.22 |
| [PHP] centos mbstring 설치 (0) | 2017.01.03 |
| [PHP] 함수 (0) | 2016.12.08 |
| [PHP] CentOS 6에서 php 5.6 업데이트 시 extension 다운 안될때 (0) | 2016.06.15 |