linuxでapache/nginx/php/mysqlのバージョンを表示

496 ワード

apacheのバージョンの表示
[root@linux ~]# cd /www/server/apache/bin
[root@linux bin]# ./httpd -v

nginxのバージョンを表示します.sbinディレクトリに注意してください.
[root@linux ~]# cd /www/server/nginx/sbin
[root@linux sbin]# ./nginx -v

phpのバージョンの表示
[root@linux ~]# cd /www/server/php/bin
[root@linux bin]# ./php -v

mysqlのバージョンを表示します.注意は--versionです.
[root@linux ~]# cd /www/server/mysql/bin
[root@linux bin]# ./mysql -version