1. WordPress 다운 및 압축해제
- cd /var/www 로 이동
- mkdir -p wordpress // WordPress 폴더 생성
- wget http://ko.wordpress.org/
latest-ko_KR.tar.gz // wget 이용하여 WordPress 다운로드 - tar zxvf latest-ko_KR.tar.gz // 타르볼 zxvf 옵션 이용하여 압축해제
- chown -R apache:apache wordpress // 폴더 사용자 및 그룹 권한 apache 로 설정
- mv wordpress blog // blog 로 폴더명 변경
2. WordPress DB 생성
- mysql -u root -p // MySQL 접속
- create database wordpress; // wordpress DB 생성
3. VirtualHost 설정
- vi /etc/httpd/conf/vhosts.conf // domain 사용관련 VirtualHost 설정
<VirtualHost *:25040> // 어떤 IP든 25040 포트로 요청시 응답DocumentRoot /var/www/wordpress/ // wordpress 폴더 생성 후 홈 디렉토리로 설정ErrorLog "logs/dwhan_wordpress/dwhan_wordpress_error_log" // /etc/httpd/log/dwhan_wordpress 폴더 생성 후 Log 파일 분리 CustomLog "logs/dwhan_wordpress/dwhan_wordpress_access_log" common // /etc/httpd/log/dwhan_wordpress 폴더 생성 후 Log 파일 분리 </VirtualHost>
4. Local PC hosts 파일 설정
- C:\Windows\System32\drivers\et
c\hosts // IP 및 도메인 매칭 설정 위해 hosts 파일 수정
IP domain // IP, 도메인 매칭
댓글 없음:
댓글 쓰기