wizmall 사이트 : http://www.shop-wiz.com/sub/wizmall
==========환경정보 ========
OS : CentOS release 6.6 (Final)
wizmall : wizmall6.6.8.zip
===================================
===============yum 초기화====================
yum clean all
====================================
=============Mysql, httpd , php설치하기==========
yum 으로 apm설치
yum install httpd mysql mysql-server php php-mysql
===============================================
==========httpd설정파일 변경하기 =============
cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.default
sed -i 's/\#ServerName www.example.com:80/ServerName <IP>:80/g' /etc/httpd/conf/httpd.conf
diff /etc/httpd/conf/httpd.conf.default /etc/httpd/conf/httpd.conf
==========================================
===========mysql설정=================
service mysqld start
/usr/bin/mysqladmin -u root password 'new-password'
mysql -uroot -p
create database wizmall;
quit
====================================
===============php설정==================
grep -P 'short_open_tag =|expose_php =|date.timezone =|register_globals =|register_long_arrays =|magic_quotes_gpc =|allow_call_time_pass_reference =|error_reporting =|display_errors =|display_startup_errors =' /etc/php.ini
sed -i 's/short_open_tag = Off/short_open_tag = On/' /etc/php.ini
sed -i 's/allow_call_time_pass_reference = Off/allow_call_time_pass_reference = On/' /etc/php.ini
sed -i 's/expose_php = On/expose_php = Off/' /etc/php.ini
sed -i 's/display_startup_errors = Off/display_startup_errors = On/' /etc/php.ini
sed -i 's/error_reporting = E_ALL \& ~E_DEPRECATED/error_reporting = E_ALL \& ~E_NOTICE \& ~E_DEPRECATED \& ~E_USER_DEPRECATED/' /etc/php.ini
sed -i 's/display_errors = Off/display_errors = On/' /etc/php.ini
sed -i 's/;date.timezone =/date.timezone = "Asia\/Seoul"/' /etc/php.ini
=============================================
==================wizmall설치================
1. wizmall설치파일을 /var/www/html에 압축을 해제합니다.
2. /var/www/html/config 폴더의 퍼미션을 777로 변경합니다.
2. http://<ip>/malladmin/install/install.php
3. 라이선스 동의 & 다음
4. DB 및 관리자 계정 정보 입력 다음 (DB이름은 mysql설정시 생성한 DB이름을 입력합니다.)
5. 관리자 로그인 (http://<ip>/malladmin/default.php) or 일반 유저 : http://<ip>/index.php
============================================
Git Tag 관리하기 (0) | 2015.10.23 |
---|---|
Git 저장소 관리 프로그램 GitLab 설치하기 (0) | 2015.10.22 |
Linux 한글 폴더 이름의 인코딩 변경 ( convmv ) (0) | 2015.09.16 |
Postgresql 명령어 (0) | 2015.08.03 |
OpenSSL 명령어 (0) | 2015.08.03 |