CloudStack 버전 확인

find out version of cloudstack
클라우드스택 버전 확인
CloudStack 설치일자, 버전 업그레이드 이력 확인

1 방법 1: API[ | ]

root@zetawiki:~# curl 'http://localhost:8096/client/api?response=json&command=listCapabilities' | python -m json.tool | grep cloudstackversion
            "cloudstackversion": "4.5.2",

2 방법 2: rpm[ | ]

명령어
rpm -qa | grep cloud-
실행예시1 (버전 2.2.13)
[root@localhost ~]# rpm -qa | grep cloud-
cloud-utils-2.2.13-1.el5.x86_64
cloud-client-ui-2.2.13-1.el5.x86_64
cloud-deps-2.2.13-1.el5.x86_64
cloud-server-2.2.13-1.el5.x86_64
cloud-core-2.2.13-1.el5.x86_64
cloud-agent-scripts-2.2.13-1.el5.x86_64
cloud-setup-2.2.13-1.el5.x86_64
cloud-client-2.2.13-1.el5.x86_64
cloud-python-2.2.13-1.el5.x86_64
실행예시2 (버전 3.0.1)
[root@localhost ~]# rpm -qa | grep cloud-
cloud-core-3.0.1-0.2105.el6.3.0.1.x86_64
cloud-deps-3.0.1-0.2105.el6.3.0.1.x86_64
cloud-agent-scripts-3.0.1-0.2105.el6.3.0.1.x86_64
cloud-python-3.0.1-0.2105.el6.3.0.1.x86_64
cloud-server-3.0.1-0.2105.el6.3.0.1.x86_64
cloud-client-3.0.1-0.2105.el6.3.0.1.x86_64
cloud-utils-3.0.1-0.2105.el6.3.0.1.x86_64
cloud-client-ui-3.0.1-0.2105.el6.3.0.1.x86_64
cloud-setup-3.0.1-0.2105.el6.3.0.1.x86_64

3 방법 3: MySQL[ | ]

mysql> use cloud;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> SELECT * FROM version ORDER BY updated DESC LIMIT 1;
+----+---------+---------------------+----------+
| id | version | updated             | step     |
+----+---------+---------------------+----------+
| 22 | 4.5.1   | 2015-10-15 11:22:33 | Complete |
+----+---------+---------------------+----------+
1 row in set (0.00 sec)
mysql> SELECT version FROM version ORDER BY updated DESC LIMIT 1;
+---------+
| version |
+---------+
| 4.5.1   |
+---------+
1 row in set (0.00 sec)

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}