Web 서버

김상훈·2023년 11월 16일
0

Linux

목록 보기
9/14
post-custom-banner

Web 서버

💡 LAMP (Linux, Apache, Mysql, Php) 서버 구축

AMP 설치 (Server)

$ dnf -y install httpd php php-mysqlnd mariadb-server

AMP 테스트 (Server)

$ vi /var/www/html/index.html

# /var/www/html/index.html

[Test Web Page]

https://github.com/rlatkd/TIL/blob/main/Linux/assets/Screenshot_2023-08-18_at_15.35.45.png?raw=true

$ vi /var/www/html/phpinfo.php
# /var/www/html/phpinfo.php

<? php phpinfo(); ?>

Web 서버용 데이터베이스 생성 (Server)

MariaDB > create database wpDB;
Query OK, 1 row affected (0.001 sec)

MariaDB > grant all on wpDB.* to wpUser@localhost identified by 'seungwon';
Query OK, 0 rows affected (0.005 sec)

Wordpress 설치 (Server)

Wordpress 활용 웹 서버 구축 (Server)

$ vi /var/www/html/wordpress/wp-config.php

2.PNG

  • 23, 26, 29 line 수정
  • Wordpress가 DB를 수정할 수 있는 권한 부여

Web 서버 구동 확인 (WinClient)

  • 정상 접속 성공
post-custom-banner

0개의 댓글