バージョン確認コマンド

CentOS

# cat /etc/redhat-release

# CentOS6の表示例
CentOS release 6.3 (Final)
 
# CentOS7の表示例
CentOS Linux release 7.2.1511 (Core)
arch

# 64bitの場合
X86_64
# 32bitの場合
i686
 
# 以下のコマンドでもOK
uname -a

# CentOS6の表示例
Linux localhost.localdomain 2.6.32-279.2.1.el6.x86_64 #1 SMP Fri Jul 20 01:55:29 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
 
# CentOS7の表示例
Linux localhost.localdomain 3.10.0-327.28.2.el7.x86_64 #1 SMP Wed Aug 3 11:11:39 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

Apache

# httpd -v

Server version: Apache/2.4.6 (CentOS)
Server built:   Jul 29 2019 17:18:49

Postfix

# postconf | grep mail_version

mail_version = 2.10.1
milter_macro_v = $mail_name $mail_version

PHP

# php -v

PHP 7.2.20 (cli) (built: Jul  5 2019 16:13:28) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies

Python

# python --version

Python 2.7.5

$ python -V

Python 2.7.5

Django

# python3
Python 3.6.8 (default, May  2 2019, 20:40:44) 
[GCC 4.8.5 20150623 (Red Hat 4.8.5-36)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> django.VERSION
(2, 2, 4, 'final', 0)
>>> exit()

Ruby

# ruby -v
または
# ruby --version

ruby 2.6.7p197 (2021-04-05 revision 67941) [x86_64-linux]

Rails

# rails -v
または
# rails --version

Rails 6.0.1

MySQL & MariaDB

### mysqlコマンドで確認
# mysql --version
mysql  Ver 15.1 Distrib 10.4.12-MariaDB, for Linux (x86_64) using readline 5.1

### mysqladminコマンドで確認
# mysqladmin --version
mysqladmin  Ver 9.1 Distrib 10.4.12-MariaDB, for Linux on x86_64

Webmin

# webmin -v
1.990

WordPress

※ xxxxx の箇所はインストールディレクトリにより異なります。

管理画面のダッシュボードで確認

SFTP 接続でソースコードを確認

/xxxxx/../wp-includes/version.php

サーバー上で確認

# vi /xxxxx/../wp-includes/version.php

/**
 * WordPress Version
 *
 * Contains version information for the current WordPress release.
 *
 * @package WordPress
 * @since 1.2.0
 */

/**
 * The WordPress version string.
 *
 * Holds the current version number for WordPress core. Used to bust caches
 * and to enable development mode for scripts when running from the /src directory.
 *
 * @global string $wp_version
 */
$wp_version = '5.9.3';

Redmine

※ xxxxx の箇所はインストールディレクトリにより異なります。

管理画面で確認

管理者権限を持ったユーザーで 「管理」 → 「情報」 画面を開いてください。

SFTP 接続でソースコードを確認

/var/lib/redmine/version.rb の冒頭にバージョンを表す数値が定義されています。

サーバー上で確認

Redmineのインストールディレクトリで以下のコマンドを実行します。

# cd /var/lib/redmine/
# ruby bin/about

Environment:
  Redmine version                4.0.5.devel.19326
  Ruby version                   2.6.7-p197 (2021-04-05) [x86_64-linux]
  Rails version                  5.2.3
  Environment                    production
  Database adapter               Mysql2
  Mailer queue                   ActiveJob::QueueAdapters::AsyncAdapter
  Mailer delivery                smtp
SCM:
  Subversion                     1.7.14
  Git                            2.17.0
  Filesystem                     
Redmine plugins:
  redmine_absolute_dates         0.0.4
  redmine_auto_percent           0.0.2
  redmine_close_button           0.0.8
  redmine_enter_cancel           0.0.2
  redmine_issue_templates        1.0.0
  redmine_issues_summary_graph   0.0.10
  redmine_jstoolbar_ext          0.2.1
  redmine_jstoolbar_ext_buttons  0.2.1
  redmine_vividtone_my_page_blocks 2017/07/05
  redmine_wiki_extensions        0.9.0
  redmine_wiki_index_tree_view   0.0.1
  redmine_wiki_lists             0.0.9
  redmine_work_time              0.4.0
  sidebar_hide                   0.0.8

Was this helpful?

0 / 0

コメントを残す 0

Your email address will not be published.