일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- docker
- Linux
- TDD
- Container
- 라우팅
- 스노트 룰
- db
- Python
- osi7layer
- 라우팅프로토콜
- Routing
- 리눅스
- database
- 스노트
- coding test
- 데이터베이스
- 트레바리
- Cosmos
- programmers
- 프로그래머스
- Snort Rule
- 코딩 테스트
- 도커
- 컨테이너
- OSI7계층
- MySQL
- 라우터
- snort
- Router
- 코딩테스트
- Today
- Total
목록apache (2)
Simple is IT, 누구나 보고 누구나 깨닫는 IT
Apache - PHP - Mysql 연동 Apache 설치 yum install httpd -y php 설치 wget -q https://rpms.remirepo.net/enterprise/remi-release-7.rpm wget -q https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm sudo rpm -Uvh remi-release-7.rpm epel-release-latest-7.noarch.rpm sudo yum --enablerepo=remi-php73 install php php-mysql php-fpm php-mbstring php-xml sudo yum --enablerepo=remi-php73 instal..
3 Tier Web Architecture(Web Server(정적), Web Application(동적), DB) 3 or 4 tier architecture 1. 웹서버 (저번 포스트에서 SSL로 구성했던 Web Server를 사용한다.)2. 웹 어플리케이션 서버 1) JDK 설치 yum update yum install java-1.8.0-openjdk-devel.x86_64 환경변수 설정 vi /etc/profile 최하단 이동 JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.242.b08-0.el7_7.x86_64/ export JAVA_HOME PATH=$PATH:$JAVA_HOME/bin export PATH source /etc/profile ..