Install phpmyadmin on Centos server with nginx

Discussion in 'Nginx' started by ASTRAPI, Aug 4, 2011.

  1. #1
    Hello

    Any info please on how can i install on my centos 5.6 32bit with latest nginx the phpmyadmin software from ssh?

    I found some tutorials on the net but i was not able to do it....

    Thank you
     
    ASTRAPI, Aug 4, 2011 IP
  2. Martindale

    Martindale Well-Known Member

    Messages:
    440
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    108
    #2
    If you want the absolute latest, installing from source is the best option; download the latest version of nginx from the nginx website, unzip it, and execute the following commands in the source directory:

    ./configure
    make
    make install
    Code (markup):
    If you encounter errors, it likely means you're missing packages.

    However, if you're using CentOS and you're not comfortable building from scratch, you can do the following:

    sudo yum install nginx
    Code (markup):
    ...which should install the latest stable version of nginx from the CentOS repos. This will be slightly out of date, but it's the easiest way for a beginner to get started.
     
    Martindale, Feb 5, 2013 IP
  3. abonk

    abonk Member

    Messages:
    48
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    43
    #3
    for nginx installation i am using minstall,
    
    mkdir minstall
    cd minstall
    wget -O minstall.tar "http://dl.dropbox.com/u/50041888/Minstall 2.0 Beta 1.tar"
    tar xfv minstall.tar
    rm minstall.tar
    
    Code (markup):
    use : bash minstall.sh to show help
     
    abonk, Feb 19, 2013 IP
  4. Tiggi

    Tiggi Active Member

    Messages:
    195
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    58
    #4
    Tiggi, Jun 17, 2013 IP