How can I check whether apache is installed with php and mysql on Ubuntu server through ssh?
Also if it is installed, in which directory?
And if in case some other package is installed, like lighttpd, where that is.
php in the Web server document root (installdir/apache2/htdocs/ for Apache or installdir/nginx/html for NGINX). Make sure the Web server is running, open a browser and type http://localhost/phptest.php. You should then see a screen showing detailed information about the PHP version you are using and installed modules.
Open a bash shell terminal and use the command “php –version” or “php -v” to get the version of PHP installed on the system.
Another way to find out if a program is installed is by using the which
command. It will show the path of the program you're searching for. For example if when your searching for apache you can use the following command:
$ which apache2ctl /usr/sbin/apache2ctl
And if you searching for PHP try this:
$ which php /usr/bin/php
If the which
command doesn't give any result it means the software is not installed (or is not in the current $PATH
):
$ which php $
Type aptitude
to start the package manager. There you can see which applications are installed.
Use /
to search for packages. Try searching for apache2
and php5
(or whatever versions you want to use). If they are installed, they should be bold and have an i
in front of them. If they are not installed (p
in front of the line) and you want to install them (and you have root permissions), use +
to select them and then g
(twice) to install it.
Word of warning: Before doing that, it might be wise to have a quick look at some aptitude tutorial on the web.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With