메뉴 건너뛰기

컴' 게시판

본문시작

IT/개발
2013.08.24 16:27

ubunto + phpMyAdmin Install

조회 수 17 추천 수 0 댓글 0

1. Install phpMyAdmin.

  • apt-get install phpmyadmin

 

2. Select neither Apache nor Lighttpd for the web server selection as we want to run it inNginx.
 

3. And say NO for the Configure database for phpmyadmin with dbconfig-common?
 

4. Append the following settings in /etc/nginx/sites-available/default. Place it inside theserver{}.
/etc/nginx/sites-available/default

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
location /phpmyadmin {
  root /usr/share/;
  index index.php index.html index.htm;
  location ~ ^/phpmyadmin/(.+.php)$ {
    try_files $uri =404;
    root /usr/share/;
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include /etc/nginx/fastcgi_params;
  }
  location ~* ^/phpmyadmin/(.+.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
    root /usr/share/;
  }
}
location /phpMyAdmin {
  rewrite ^/* /phpmyadmin last;
}

 

5. Restart the Nginx/

  • /etc/init.d/nginx restart

 

6. Browse the following URL.

1
http://<your domain>/phpmyadmin

nginx-phpmyadmin

 

Done =)


  1. 24
    Aug 2013
    16:27

    ubunto + phpMyAdmin Install

    CategoryIT/개발 By꿈자 Reply0 Views17 Votes0
    Read More
  2. 24
    Aug 2013
    16:12

    Memcached Install

    CategoryIT/개발 By꿈자 Reply0 Views6 Votes0
    Read More
  3. 24
    Aug 2013
    16:06

    NGINX + PHP + MYSQL

    CategoryIT/개발 By꿈자 Reply0 Views168 Votes0
    Read More
  4. 29
    Jul 2013
    22:30

    Titanium 환경셋팅 관련

    CategoryIT/개발 By꿈자 Reply0 Views24 Votes0
    Read More
  5. 30
    Jun 2013
    12:46

    ??

    Category개인자료 By꿈자 Reply0 Views164 Votes0
    Read More
  6. 26
    Jun 2013
    12:57

    Restful API HTTP 상태값 정의

    CategoryIT/개발 By꿈자 Reply0 Views21983 Votes0
    Read More
  7. 26
    Jun 2013
    12:55

    안드로이드 오픈 라이브러리

    CategoryIT/개발 By꿈자 Reply0 Views18245 Votes0
    Read More
  8. 26
    Jun 2013
    12:49

    안드로이드 유용한 라이브러리

    CategoryIT/개발 By꿈자 Reply0 Views24658 Votes0
    Read More
  9. 21
    Jun 2013
    22:12

    [Ubuntu] 패키지 툴 및 패...

    CategoryIT/개발 By꿈자 Reply0 Views18024 Votes0 file
    Read More
  10. 08
    Jun 2013
    12:32

    그것이 알고싶다 - 청부살...

    Category개인자료 By꿈자 Reply0 Views40460 Votes0 secret
    Read More
Board Pagination Prev 1 ... 9 10 11 12 13 ... 17 Next
/ 17