본문 바로가기

Development Note/Ubuntu

우분투에 phpMyAdmin 설치 및 경로 지정하기 [How to install phpMyAdmin on Ubuntu and set path]



 [KOR] 워드프레스 등의 데이터베이스 작업을 편하게 하려면 phpMyAdmin은 필수적이라고 할 수 있습니다. 이번 포스트에서는 터미널을 통해 phpMyAdmin을 설치하고 gedit을 통해 아파치 설정 파일을 살짝 변경해서 홈페이지 주소로 phpMyAdmin에 접속할 수 있도록 해 볼 예정입니다. 굳이 웹에서 받은 패키지를 폴더에 우겨넣고 하지 않아도 터미널에서 간단히 phpMyAdmin을 설치하고 홈페이지에서 동작하도록 설정 해 줄 수 있습니다. 단지 한 줄의 명령어가 필요할 뿐이죠. 

 [ENG] phpMyAdmin is almost necessary package for server management. In this post, I am planning to introduce how to install phpMyAdmin via Terminal and set configurations. You don't need to do this via difficult way. You can easily install phpMyAdmin and make it work. All you need is Single line below.


커맨드 [Command]:


#sudo apt-get install phpmyadmin





 [KOR] 이제 phpMyAdmin이 시스템에 설치되었습니다. 다음은 아파치 설정 파일을 수정하는 일이 남았습니다. gedit을 통해 아파치 설정 파일을 엽니다.

 [ENG] Now phpMyAdmin has installed on your System. Next thing is modifying apache configuration file. Open apache configuration file via gedit.



커맨드 [Command]:


#sudo gedit /etc/apache2/apache2.conf



 [KOR] 열린 파일 내용을 쭉 검색해서 Include 라는 단어를 찾습니다. 그리고 다음의 내용을 추가합니다.

 [ENG] Browse content and find a word 'Include'. And add followings to the contents.



다음 [Followings]:


#Include phpMyAdmin

Include /etc/phpmyadmin/apache.conf



 [KOR] 어딘지 감이 안오시는 분들이 계실 것 같아서 이미지 첨부합니다.

 [ENG] Here is an image for people who couldn't understand yet.





 [KOR] 이제 파일을 저장하고 다음의 커맨드로 아파치를 재실행합니다.

 [ENG] Now save [apache2.conf] file and restart apache via command below.



커맨드 [Command]:


#sudo service apache2 restart



 [KOR] 지금부터 [http://ip주소/phpmyadmin] 주소를 통해 phpMyAdmin을 사용할 수 있습니다.

 [ENG] And now, you can use phpMyAdmin via this address: [http://ip-address/phpmyadmin]