GNU/Linux >> Linux の 問題 >  >> Panels >> Panels

MySQL / Apache/PHPバージョンを取得する方法

これらのコマンドは、CentOSを実行している仮想プライベートサーバー(VPS)または専用サーバーで使用できます。通常、WebホスティングサーバーにはCentOSを使用します。多くの場合、Apache、PHP、およびMySQLサーバーのバージョンを確認する必要があります。

MySQLの場合:

root@web [/home/admin]# mysql -V
mysql Ver 14.14 Distrib 5.5.29, for Linux (i686) using readline 5.1
root@web [/home/admin]# 

最初のコマンドの大文字の「V」に注意してください。

または、次を使用することもできます:

root@host [/]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 273052
Server version: 5.5.28-cll MySQL Community Server (GPL)
Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> SHOW VARIABLES LIKE "%version%";
+-------------------------+------------------------------+
| Variable_name | Value |
+-------------------------+------------------------------+
| innodb_version | 1.1.8 |
| protocol_version | 10 |
| slave_type_conversions | |
| version | 5.5.28-cll |
| version_comment | MySQL Community Server (GPL) |
| version_compile_machine | i686 |
| version_compile_os | Linux |
+-------------------------+------------------------------+
7 rows in set (0.00 sec)

mysql>
root@host [/]#

PHPを使用する場合:

root@host [/]# php -v
PHP 5.3.21 (cli) (built: Jan 27 2013 06:28:24)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2013 Zend Technologies
with the ionCube PHP Loader v4.2.2, Copyright (c) 2002-2012, by ionCube Ltd.
root@host [/]#

Apacheの使用:

root@host [/]# /usr/local/apache/bin/httpd -v
Server version: Apache/2.2.23 (Unix)
Server built: Jan 27 2013 06:23:25
Cpanel::Easy::Apache v3.16.7 rev9999
root@host [/]#

ご覧のとおり、サーバーにcPanelがインストールされている場合、このコマンドはEasyApacheバージョンも出力します。


Panels
  1. MySQL、PHP、Apacheの設定ファイルを見つける方法

  2. ApacheにPhp7.0(7.1ではない)を使用させる方法は?

  3. Ubuntu16.04にPHP7.2をインストールする方法

  1. CentOS / RHEL 7にApache、MySQL、PHP(LAMP)をインストールする方法

  2. Ubuntu 16.04 LTSにApache、MySQL、PHP(LAMP)をインストールする方法

  3. Ubuntu16.04にMySQLをインストールする方法

  1. CentOS 7.6にApache、PHP 7.3、MySQLをインストールする方法

  2. Linux、Apache、MySQL、PHP(LAMP)スタックをUbuntu 16.04 /Ubuntu14.04にインストールする方法

  3. Debian 11 に LAMP Apache、MySQL、PHP をインストールする方法