Anupam
Anupam

Reputation: 517

No error in console but unable to view Admin module of Broadleaf Commericial Edition in the browser

I am using BroadLeaf B2B Commercial Edition version 5.2.2-GA, I have got no error while executing the below commands as per specified in ReadMe.md

mvn clean install

cd admin

mvn spring-boot:run

But there is no page is getting displayed in the below urls

https://localhost:8444/admin

http://localhost:8081/admin

Upvotes: 0

Views: 43

Answers (1)

phillipuniverse
phillipuniverse

Reputation: 2045

If you are running the Multi-Tenant version of Broadleaf, you will either need to set up DNSMasq to go to map URLs to localhost or set up /etc/hosts with either the test or global subdomains (which are the default multi-tenant sites):

127.0.0.1 test.blc.dev
127.0.0.1 global.blc.dev

If this is the case you should also see a warning message in your logs about not being able to find a site.

Upvotes: 1

Related Questions