Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Setup up NodeJS (LTS):
Start the MySQL service:

$ service mysqld start
$ mysql_secure_installation

### Using jenv and/or pyenv for Version Management

Expand Down Expand Up @@ -86,13 +87,33 @@ Start the management server:

If this works, you've successfully setup a single server Apache CloudStack installation.

Open the following URL on your browser to access the Management Server UI:

http://localhost:8080/client/
To access the Management Server UI, follow the following procedure:

The default credentials are; user: admin, password: password and the domain
field should be left blank which is defaulted to the ROOT domain.

## To bring up CloudStack UI

Move to UI Directory

$ cd /path/to/cloudstack/ui

To install dependencies.

$ npm install

To build the project.

$ npm build

For Development Mode.

$ npm start

Make sure to set CS_URL=http://localhost:8080/client on .env.local file on ui.

You should be able to run the management server on http://localhost:5050

## Building with non-redistributable plugins

CloudStack supports several plugins that depend on libraries with distribution restrictions.
Expand Down
Loading