檢視apache、linux、kernel、nginx等版本

傑克.陳發表於2015-01-28
原文:檢視apache、linux、kernel、nginx等版本

檢視apache版本

 

/usr/sbin/apachectl -v
httpd -v
安裝目錄,使用apachectl -v
 

檢視mysql版本

mysql –help | grep Distrib

mysql -V

mysql/bin/mysql -u root -p -e “select version()”
/bin mysqladmin version
 
檢視linux版本
 lsb_release
-a
head -n1 /etc/issue
cat
/etc/redhat-release (redhat)
rpm -q
redhat-release        (redhat)
 
檢視核心版本
cat
/proc/version
uname
-a

uname
-r
 
檢視php版本
php
-v
phpinfo();
 
檢視nginx版本

nginx
-V

 

 

 

 

 
Linux下檢視nginx,apache,mysql,php的編譯引數 
1、nginx編譯引數:
#/usr/local/nginx/sbin/nginx -V

2、apache編譯引數:
# cat
/usr/local/apache/build/config.nice
#/usr/local/apache/bin/apachectl -V
#cat
$apachehome$/build/config.nice


3、php編譯引數:
#
/usr/local/php/bin/php -i |grep configure
#$PHP$/bin/php -i | grep configure
# /usr/local/php/bin/php-config 

4、mysql編譯引數:
# cat /usr/local/mysql/bin/mysqlbug|grep
configure
 
5、smartd編譯引數:
#/usr/sbin/smartctl -V|grep
configure


相關文章