본문 바로가기

TOOL

[wordpress] 워드프레스 로컬 셋팅 (Windows 환경, Apache기반)

728x90

0. php 환경 셋팅 (apm)

https://jintrue.tistory.com/entry/wordpresswindows-10-xampp%EB%A1%9C-apm%EC%84%A4%EC%B9%98%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95

 

[wordpress](windows) xampp로 apm설치하는 방법

wordpress를 사용하기 위해선 기본적으로 database를 관리하는 곳 과 서버를 돌리는 곳 그리고 서버언어(php)가 필요하다. 오토셋이나 비트나미를 이용하여 서버단을 꾸려도 되는데 난 아파치, php, mysql를 한 번..

jintrue.tistory.com

 

1. 아래 주소에서 워드프레스 zip 파일 다운로드.

https://ko.wordpress.org/download/

 

Download

Download WordPress today, and get started on creating your website with one of the most powerful, popular, and customizable platforms in the world.

ko.wordpress.org

압축풀어서 원하는 폴더 생성 후 위치시킨다.

 

2. 로컬호스트설정

참고 : https://jintrue.tistory.com/entry/php-%EB%A1%9C%EC%BB%AC-%ED%99%98%EA%B2%BD-%EC%85%8B%ED%8C%85%ED%95%98%EA%B8%B0?category=804622

 

[php] 로컬 환경 셋팅하기

xampp로 apm를 설치한 환경에서 php 공부를 해보려 한다. ( 참고 : xampp 설치 방법 - https://jintrue.tistory.com/entry/wordpresswindows-xampp-%EC%84%A4%EC%B9%98%ED%9B%84-%EC%9B%8C%EB%93%9C%ED%94%84%EB%A..

jintrue.tistory.com

3. DB생성

- 워드프레스는 일반적으로 관리자 페이지가 있기 때문에 DB를 두개 가져간다. 

wp(wordpress)-db 와 연결할 사용자 db

 

(1) 명령 프롬프트를 오른쪽 마우스 > 관리자 권한으로 실행한다. 

mysql>bin이 있는 경로로 간다. 

보통 C드라이브에 xampp로 apm를 셋팅했다면 C:\xampp\mysql\bin 이다. 

경로가 맞춰졌으면 아래 명령어를 통해서 워드프레스db와 사용자 db를 생성 및 연결한다. 

 

mysql -u root -p mysql

MariaDB [none]> Enter password: ******

 

MariaDB [none]> show databases;

MariaDB [none]> use mysql;

 

MariaDB [mysql]> create user 생성할DB아이디;

Query OK, 0 rows affected (0.00 sec)

 

# 비번설정

MariaDB [mysql]> create user 성할DB아이디@localhost identified by '생성할 비번';

Query OK, 0 rows affected (0.00 sec)

 

# 생성한 계정 조회

MariaDB [mysql]> select user, host from user where user='DB아이디';

+--------+-----------+

| user   | host   |

+--------+-----------+

| 아이디 | %         |

| 아이디 | localhost |

+--------+-----------+

2 rows in set (0.00 sec)

 

 

MariaDB [mysql]> create database 생성할wp_DB아이디;

Query OK, 0 rows affected (0.00 sec)

 

MariaDB [mysql]> grant all privileges on wp_DB아이디.*to'DB아이디'@localhost identified by '해당 DB아이디에대한 비번';

Query OK, 0 rows affected (0.00 sec)

 

MariaDB [mysql]> grant all privileges on wp_DB아이디.*to'DB아이디'@'%' identified by '해당 DB아이디에대한 비번';

Query OK, 0 rows affected (0.00 sec)

 

MariaDB [mysql]> flush privileges;

Query OK, 0 rows affected (0.00 sec)

 

 

MariaDB [mysql]> show grants for DB아이디@localhost;

+---------------------------------------------------------------------------------------------------------------+

| Grants for sbfair@localhost                                                                                   |

+---------------------------------------------------------------------------------------------------------------+

| GRANT USAGE ON *.* TO 'sbfair'@'localhost' IDENTIFIED BY PASSWORD '*C470BE2DA3DA6C9E3B0092460C9DF15A81B222F1' |

| GRANT ALL PRIVILEGES ON `wp_sbfair`.* TO 'sbfair'@'localhost'                                                 |

+---------------------------------------------------------------------------------------------------------------+

2 rows in set (0.01 sec)

 

MariaDB [mysql]> exit;

 

 

4. DB 연결

- 설정해놓은 워드프레스 로컬 페이지로 접속하여 차례대로 설정한 디비이름 그리고 사용자명과 비번을 설정하여 submit 하면 끝.

'TOOL' 카테고리의 다른 글

[etc] 협업 툴  (0) 2020.03.29
[VSCode] git 연동  (0) 2020.01.10
[adobe photoshop] Save for Web 단축키  (0) 2019.10.15
[VSCode] ftp remote  (0) 2019.10.15
[etc] 파일 비교 무료 프로그램 - WindMerge  (0) 2019.09.04