# cat /proc/cpuinfo | grep "physical id" | sort |uniq
physical id : 0
physical id : 1
# cat /proc/cpuinfo | grep "physical id" |grep "0" | wc -l
4
说明该服务器是有2个cpu 每个cpu是4核
查看nginx版本
#cd /usr/local/nginx/sbin/ 以自己的nginx安装目录为准
#./nginx -v
查看硬盘分区情况
#df -lh
查看服务器硬盘大小
#fdisk -l
Disk /dev/sda: 1000.2 GB, 1000204886016 bytes
cat /etc/issue 查看centos版本
登陆mysql后就有版本信息的
也可以用sql语句
mysql> select version(); 查看mysql版本
查看php版本在网站根目录下
# vi test.php 内容:
<?php
phpinfo();
?>
访问:http://192.168.0.2/test.php 就会出现上图php版本就显而易见了
时间: 2025-01-04 23:16:43