2011-12-13 4 views

답변

1

각 웹 사이트에서 소스 타볼을 다운로드하거나 패키지 관리자를 사용하여 별도로 설치하십시오. 데비안 기반 시스템 (Debian, Ubuntu 등)의 경우 aptitude 또는 apt-get입니다. Red Hat 기반 시스템 (예 : CentOS)에서는 yum입니다. 당신이 별도로 그 설치해야 할 수도 있으므로

yum install httpd php5 mysqld 

에 phpMyAdmin은 모든 pacakge 저장소에없는, 웹 서버의 DocumentRoot에에 타르를 추출 후, 아무것도 더합니다 (: 당신이하고자했다 CentOS는 시스템의 예를 들어 웹 파일이 상주 함) 설정 파일을 조정하십시오.

+0

이 유용한 정보를 제공해 주셔서 감사합니다. – chandu18

0
step 1. Installing Apache 

Open terminal (press Ctrl+Alt+t) and execute the command - 

sudo apt-get install apache2 

step 2. Installing MySQL 

Execute the command - 

sudo apt-get install mysql-server 

step 3. Installing PHP 

Execute the command - 

sudo apt-get install php5 libapache2-mod-php5 php5-mysql 

Then restart the Apache server to load php modules - 

sudo /etc/init.d/apache2 restart 

step 4. install phpMyAdmin on Ubuntu 
just execute the command - 

sudo apt-get install phpmyadmin 
관련 문제