Skip to content

Commit 058eead

Browse files
committed
Fixes: #11312
1 parent 6dc89a0 commit 058eead

File tree

2 files changed

+42
-22
lines changed

2 files changed

+42
-22
lines changed

README.md

Lines changed: 38 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131

3232
[![Apache CloudStack](tools/logo/apache_cloudstack.png)](https://cloudstack.apache.org/)
3333

34+
![Screenshot](ui/docs/screenshot-dashboard.png)
35+
3436
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
3537
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
3638

@@ -49,17 +51,9 @@
4951

5052
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
5153

52-
Apache CloudStack is open source software designed to deploy and manage large
53-
networks of virtual machines, as a highly available, highly scalable
54-
Infrastructure as a Service (IaaS) cloud computing platform. CloudStack is used
55-
by a number of service providers to offer public cloud services, and by many
56-
companies to provide an on-premises (private) cloud offering, or as part of a
57-
hybrid cloud solution.
54+
Apache CloudStack empowers organizations to build and manage highly available, scalable, and secure private, public, and hybrid clouds with unparalleled ease. Transform your infrastructure into a flexible, on-demand service with CloudStack's comprehensive IaaS platform.
5855

59-
CloudStack is a turnkey solution that includes the entire "stack" of features
60-
most organizations want with an IaaS cloud: compute orchestration,
61-
Network-as-a-Service, user and account management, a full and open native API,
62-
resource accounting, and a first-class User Interface (UI).
56+
CloudStack is a turnkey solution that includes the entire "stack" of features most organizations want with an IaaS cloud: compute orchestration, Network-as-a-Service, user and account management, a full and open native API, resource accounting, and a first-class User Interface (UI).
6357

6458
CloudStack currently supports the most popular hypervisors:
6559
VMware vSphere, KVM, XenServer, XenProject and Hyper-V as well as
@@ -72,20 +66,46 @@ For more information on Apache CloudStack, please visit the [website](https://cl
7266

7367
## Who Uses CloudStack?
7468

75-
* There are more than 150 known organizations using Apache CloudStack (or a commercial distribution of CloudStack). Our users include many major service providers running CloudStack to offer public cloud services, product vendors who incorporate or integrate with CloudStack in their own products, organizations who have used CloudStack to build their own private clouds, and systems integrators that offer CloudStack related services.
69+
* **Trusted by Global Leaders**: CloudStack is the backbone of infrastructure for major service providers, telecom operators, and enterprises worldwide.
70+
> "CloudStack has enabled us to scale our public cloud offering with ease and reliability." - *Major Cloud Provider*
7671
77-
* See our [case studies](https://cwiki.apache.org/confluence/display/CLOUDSTACK/Case+Studies) highlighting successful deployments of Apache CloudStack.
72+
* **Diverse User Base**: Over 150 known organizations use Apache CloudStack, including:
73+
* [Apple](https://www.apple.com)
74+
* [Disney](https://www.disney.com)
75+
* [Huawei](https://www.huawei.com)
76+
* *...and many more.*
7877

79-
* See the up-to-date list of current [users](https://cloudstack.apache.org/users.html).
78+
* See our [case studies](https://cwiki.apache.org/confluence/display/CLOUDSTACK/Case+Studies) highlighting successful deployments of Apache CloudStack.
8079

81-
* If you are using CloudStack in your organization and your company is not listed above, please complete our brief adoption [survey](https://cloudstack.apache.org/survey.html). We're happy to keep your company name anonymous if you require.
80+
* See the up-to-date list of current [users](https://cloudstack.apache.org/users.html).
8281

83-
## Demo
82+
* If you are using CloudStack in your organization and your company is not listed above, please complete our brief adoption [survey](https://cloudstack.apache.org/survey.html). We're happy to keep your company name anonymous if you require.
8483

85-
![Screenshot](ui/docs/screenshot-dashboard.png)
8684

87-
See the project user-interface QA website that runs CloudStack against simulator hypervisor:
88-
https://qa.cloudstack.cloud/simulator/ (admin:password)
85+
## Quick Start / Try It Now
86+
87+
The easiest way to try CloudStack is using the all-in-one Docker container. This is for **evaluation purposes only**.
88+
89+
1. **Pull the Simulator Image**:
90+
```bash
91+
docker pull apache/cloudstack-simulator
92+
```
93+
94+
2. **Run the Container**:
95+
```bash
96+
docker run --name simulator -p 8080:5050 -d apache/cloudstack-simulator
97+
```
98+
99+
3. **Access the UI**:
100+
Open your browser at [http://localhost:8080/](http://localhost:8080/).
101+
* **Username**: `admin`
102+
* **Password**: `password`
103+
104+
4. **Deploy a Data Center**:
105+
Once logged in, you can deploy a basic zone to test:
106+
```bash
107+
docker exec -it simulator python /root/tools/marvin/marvin/deployDataCenter.py -i /root/setup/dev/basic.cfg
108+
```
89109

90110
## Getting Started
91111

services/console-proxy/rdpconsole/src/main/java/common/Client.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -299,16 +299,16 @@ private Element setMainElementAndAddressBasedOnProtocol(Protocol protocol, SSLSt
299299

300300
private Protocol parseOptions(String[] args) {
301301
String protocolName = (args.length > 0) ? args[0] : "";
302-
Protocol protocol;
302+
Protocol protocol = Protocol.NONE;
303303

304304
Option[] options;
305-
if (protocolName.equals(Protocol.VNC.name().toLowerCase())) {
305+
if (protocolName.equals("vnc")) {
306306
protocol = Protocol.VNC;
307307
options = join(commonOptions, vncOptions);
308-
} else if (protocolName.equals(Protocol.RDP.name().toLowerCase())) {
308+
} else if (protocolName.equals("rdp")) {
309309
protocol = Protocol.RDP;
310310
options = join(commonOptions, rdpOptions);
311-
} else if (protocolName.equals(Protocol.HYPERV.name().toLowerCase())) {
311+
} else if (protocolName.equals("hyperv")) {
312312
protocol = Protocol.HYPERV;
313313
options = join(commonOptions, hyperVOptions);
314314
} else {

0 commit comments

Comments
 (0)