Server not responding: HttpErrorResponse: Http failure response for http://localhost:8082/getPageList: 0 Unknown Error #323
-
after setup of polypheny-UI why this error is comming |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hey @Pawanupadhyay10 For this to work correctly you need to clone Polypheny-DB and start it first. To develop for Polypheny-UI you additionally can start the development mode of the UI by running I hope this helps, if not feel free to comment on this post with additional questions regarding the problem. Please refrain from creating additional post for the similar question, as it tends to clutter the disscussion board and makes it harder to keep track. |
Beta Was this translation helpful? Give feedback.
Hey @Pawanupadhyay10
It looks like you don't have Polypheny-DB running, only Polypheny-UI.
I guess you started Polypheny-UI by executing
ng serve
?For this to work correctly you need to clone Polypheny-DB and start it first.
The easiest way to do this would be to open Polypheny-DB in Intellij or Eclipse and run the PolyphenyDB class in the dbms module.
After that, you will be able to access Polypheny directly via localhost:8080.
To develop for Polypheny-UI you additionally can start the development mode of the UI by running
ng serve
in Polypheny-UI.After that you can access the development instance of the UI via localhost:4200.
I hope this helps, if not feel free to comment on this post …