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
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.
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
Here is a pretty good tutorial on how to install phpmyadmin on Contos for both apache and nginx webserver: http://www.tecmint.com/install-phpmyadmin-for-apache-or-nginx-on-rhelcentos-6-3-5-8-fedora-17-12/ . Let me know if you encounter any problems with it.