DB-Transaction 실습

TaeYoon Kim·2023년 12월 19일
0

기초 (치트 시트)

목록 보기
11/23
  1. nginx 웹 서버 설치
    yum install -y nginx

  2. php 설치
    yum install -y php php-common php-cli php-fpm php-opcache php-mbstring php-xml php-xmlrpc php-gd php-pdo php-mysqlnd php-json php-soap php-odbc php-curl php-zip

  3. 워드 프레스 설치
    1) 다운
    wget https://ko.wordpress.org/latest-ko_KR.tar.gz

    2) 다운 받은 파일 압축 해제

    3) 압축푼 디렉토리 이동
    압축 풀면 나오는 wordpress라는 디렉토리를 /var/www/html 밑으로 옮긴다.

    4) 권한 설정
    chown -R nginx:nginx ./wordpress

5) nginx 서버 설정
/etc/nginx/nginx.conf 파일 수정
42 root /usr/share/nginx/html; 전
42 root /var/www/html/wordpress; 후

6) 방화벽 끄기
둘 다

6) DB 서버에서 DB 생성 및 권한주기

7) 웹 으로 접속
DB이름, DB ID, DB PW, DB 서버 주소 작성하고 다음

8) wp-config.php 파일 생성
vi /var/www/html/wordpress/wp-config.php
웹 페이지에 떠 있는 내용을 그대로 복붙

0개의 댓글