View various software versions and parameters under Linux
Linux kernel version check
Method 1. Use the uname command to check
# uname -a # 查看所有参数 # uname -r 3.10.0-693.2.2.el7.x86_64
You can see that my current kernel version is 3.10. 0.
Method 2. View /proc/version
# cat /proc/version Linux version 3.10.0-693.2.2.el7.x86_64 (builder@kbuilder.dev.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-16) (GCC) ) #1 SMP Tue Sep 12 22:26:13 UTC 2017
View the release version
You can view /etc/centos- release to view the release version, but this method is only suitable for centos releases.
# cat /etc/centos-release CentOS Linux release 7.4.1708 (Core)
The other method is suitable for all distributions, but the prerequisite is that the redhat-lsb software needs to be installed.
yum install -y redhat-lsb
Then you can use lsb_release to view it
# lsb_release -r Release: 7.4.1708
View hardware parameters
View the word length of the system
# getconf LONG_BIT 64
To view cpu information, use cat /proc/cpuinfo to list all cpu information.
# cat /proc/cpuinfo processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 85 model name : Intel(R) Xeon(R) Platinum 8163 CPU @ 2.50GHz stepping : 4 microcode : 0x1 cpu MHz : 2499.988 cache size : 33792 KB physical id : 0 siblings : 16 core id : 0 cpu cores : 8 apicid : 0 initial apicid : 0 fpu : yes fpu_exception : yes cpuid level : 13 wp : yes flags : …… bogomips : 4999.97 clflush size : 64 cache_alignment : 64 address sizes : 46 bits physical, 48 bits virtual power management: processor : 1 vendor_id : GenuineIntel cpu family : 6 model : 85 model name : Intel(R) Xeon(R) Platinum 8163 CPU @ 2.50GHz stepping : 4 ……
cpu cores indicates the number of cores of the cpu, which is an 8-core cpu.
How to check the number of cpu, here are two methods: the first is to use cat /proc/cpuinfo, but use grep and wc commands together to calculate.
# cat /proc/cpuinfo | grep processor | wc -l 16
The other method is very simple and will be listed directly for you.
# lscpu Architecture: x86_64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 16 ……
As you can see from the above, the server currently contains 16 CPUs, all of which have 8 cores.
Check memory
To check the memory size and usage of the system, you can use the free command.
# free -h total used free shared buff/cache available Mem: 15G 1.8G 656M 1.5M 13G 13G Swap: 1.0G 0B 1.0G
As you can see, the total memory size is 15G, and 1.8G of memory has been used.
Check the number and usage of hard disks
To check the number of hard disks, you can use the lsblk command, which will list all hard disks and You can see from the partition
lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT vda 253:0 0 40G 0 disk └─vda1 253:1 0 40G 0 part / vdb 253:16 0 250G 0 disk └─vdb1 253:17 0 150G 0 part /www
under the hard disk that there are currently two hard disks on the server, and the device names are vda and vdb.
If you want to check the hard disk usage, you need to use the df -h command.
[root@izj6c0zd30oi794erd9hdvz ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/vda1 40G 5.7G 32G 16% / devtmpfs 7.8G 0 7.8G 0% /dev tmpfs 7.8G 632K 7.8G 1% /dev/shm tmpfs 7.8G 476K 7.8G 1% /run tmpfs 7.8G 0 7.8G 0% /sys/fs/cgroup /dev/vdb1 148G 62G 79G 44% /www tmpfs 1.6G 0 1.6G 0% /run/user/0
View php related information
#php version view
# php -v PHP 7.4.4 (cli) (built: Apr 13 2020 10:42:43) ( NTS )
php configuration file search
# php --ini Configuration File (php.ini) Path: /www/server/php/74/etc Loaded Configuration File: /www/server/php/74/etc/php.ini
View Apache related information
View apache version information
# httpd -v Server version: Apache/2.4.41 (Unix) Server built: Nov 4 2019 17:53:11
To view the location of the apache configuration file, still use the httpd command, but you need to use -V to view, -V can see the compile-time parameters.
# /usr/local/apache/bin/httpd -V …… -D SERVER_CONFIG_FILE="conf/httpd.conf"
View nginx related information
The method to check nginx version and configuration file location is the same as apache
# /usr/local/nginx/sbin/nginx -v nginx version: nginx/1.16.1 # /usr/local/nginx/sbin/nginx -V ……
View Mysql related information
View the mysql version information, which is different from before. Use -V, capital V, here.
# mysql -V mysql Ver 14.14 Distrib 5.6.37, for Linux (x86_64) using EditLine wrapper
To view the location of the mysql configuration file, you need to use the option --help
# mysql --help | grep 'Default options' -A 1 Default options are read from the following files in the given order: /etc/mysql/my.cnf /etc/my.cnf ~/.my.cnf
The above is the detailed content of View various software versions and parameters under Linux. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Full table scanning may be faster in MySQL than using indexes. Specific cases include: 1) the data volume is small; 2) when the query returns a large amount of data; 3) when the index column is not highly selective; 4) when the complex query. By analyzing query plans, optimizing indexes, avoiding over-index and regularly maintaining tables, you can make the best choices in practical applications.

Yes, MySQL can be installed on Windows 7, and although Microsoft has stopped supporting Windows 7, MySQL is still compatible with it. However, the following points should be noted during the installation process: Download the MySQL installer for Windows. Select the appropriate version of MySQL (community or enterprise). Select the appropriate installation directory and character set during the installation process. Set the root user password and keep it properly. Connect to the database for testing. Note the compatibility and security issues on Windows 7, and it is recommended to upgrade to a supported operating system.

InnoDB's full-text search capabilities are very powerful, which can significantly improve database query efficiency and ability to process large amounts of text data. 1) InnoDB implements full-text search through inverted indexing, supporting basic and advanced search queries. 2) Use MATCH and AGAINST keywords to search, support Boolean mode and phrase search. 3) Optimization methods include using word segmentation technology, periodic rebuilding of indexes and adjusting cache size to improve performance and accuracy.

The difference between clustered index and non-clustered index is: 1. Clustered index stores data rows in the index structure, which is suitable for querying by primary key and range. 2. The non-clustered index stores index key values and pointers to data rows, and is suitable for non-primary key column queries.

MySQL is an open source relational database management system. 1) Create database and tables: Use the CREATEDATABASE and CREATETABLE commands. 2) Basic operations: INSERT, UPDATE, DELETE and SELECT. 3) Advanced operations: JOIN, subquery and transaction processing. 4) Debugging skills: Check syntax, data type and permissions. 5) Optimization suggestions: Use indexes, avoid SELECT* and use transactions.

In MySQL database, the relationship between the user and the database is defined by permissions and tables. The user has a username and password to access the database. Permissions are granted through the GRANT command, while the table is created by the CREATE TABLE command. To establish a relationship between a user and a database, you need to create a database, create a user, and then grant permissions.

MySQL supports four index types: B-Tree, Hash, Full-text, and Spatial. 1.B-Tree index is suitable for equal value search, range query and sorting. 2. Hash index is suitable for equal value searches, but does not support range query and sorting. 3. Full-text index is used for full-text search and is suitable for processing large amounts of text data. 4. Spatial index is used for geospatial data query and is suitable for GIS applications.

MySQL and MariaDB can coexist, but need to be configured with caution. The key is to allocate different port numbers and data directories to each database, and adjust parameters such as memory allocation and cache size. Connection pooling, application configuration, and version differences also need to be considered and need to be carefully tested and planned to avoid pitfalls. Running two databases simultaneously can cause performance problems in situations where resources are limited.
