Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
software_development:install_apm_for_dev [2020/03/01 05:27] – [PHP] prgram | software_development:install_apm_for_dev [2025/07/07 14:12] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== 개발환경 | + | ====== 개발환경 APM 설치하기 ====== |
{{tag> | {{tag> | ||
윈도10 64bit 환경 | 윈도10 64bit 환경 | ||
+ | 현재 웹호스팅 환경과 최대한 동일하게 하기 위해 예전 버전을 설치하였다. | ||
+ | |||
+ | 64bit https:// | ||
===== Apache ===== | ===== Apache ===== | ||
https:// | https:// | ||
+ | |||
+ | PHP랑 맞추려면 x86 으로 설치해야 함 | ||
* [Apache 변수] conf > httpd.conf | * [Apache 변수] conf > httpd.conf | ||
Line 42: | Line 47: | ||
* [cmd] httpd.exe -k restart | * [cmd] httpd.exe -k restart | ||
+ | * <?php phpinfo(); ?> : htdocs 폴더에 넣고 접속, 실험 | ||
+ | |||
+ | |||
+ | ===== MySQL ===== | ||
+ | 5.0.90 | ||
+ | https:// | ||
+ | |||
+ | * [환경변수] Path : c: | ||
+ | * my-small.ini > my.ini 로 변경 | ||
+ | < | ||
+ | [mysqld] | ||
+ | # set basedir to your installation path | ||
+ | basedir=C:/ | ||
+ | # set datadir to the location of your data directory | ||
+ | datadir=C:/ | ||
+ | port=3306 | ||
+ | </ | ||
+ | |||
+ | * [cmd] mysqld --install | ||
+ | |||
+ | * php> php.ini : extension=php_mysql.dll (; 제거) | ||
+ | |||
+ | * [윈도 > System > Mysql > Start] | ||
+ | * [cmd] httpd -k restart | ||
+ | |||
+ | |||
+ | ==== 비밀번호 설정 ==== | ||
+ | https:// | ||
+ | |||
+ | 초기에는 비밀번호 없음 | ||
+ | * [cmd] mysql> | ||
+ | * mysql> update user set pasword = password(' | ||
+ | * mysql> flush privileges; | ||
+ | * mysql> quit | ||
+ | |||
+ | |||
+ | ==== phpMyAdmin ==== | ||
+ | https:// | ||
+ | https:// | ||
+ | |||
+ | * php.ini | ||
+ | * extension=php_mbstring.dll | ||
+ | * extension=php_mysqli.dll | ||
+ | |||
+ | |||
==== Reference ==== | ==== Reference ==== | ||
https:// | https:// | ||
+ | https:// | ||
~~DISCUSSION~~ | ~~DISCUSSION~~ | ||