Re: Management server won't start

2022-02-07 Thread Wei ZHOU
yes, could be. I use npm 8.4.1 and nodejs 12.22.10, everything looks ok. I do not have 'node' installed. -Weo On Mon, 7 Feb 2022 at 14:56, Pritam Neog wrote: > npm 8.1.2 > nodejs v12.21.0 > node v16.13.2 > > This got me thinking: is it right to have different versions for nodejs and > node? >

Re: Management server won't start

2022-02-07 Thread Pritam Neog
npm 8.1.2 nodejs v12.21.0 node v16.13.2 This got me thinking: is it right to have different versions for nodejs and node? On Mon, Feb 7, 2022 at 7:20 PM Wei ZHOU wrote: > Hi Pritam, > > Which npm and nodejs version do you use ? > > -Wei > > On Mon, 7 Feb 2022 at 14:44, Pritam Neog wrote: > > >

Re: Management server won't start

2022-02-07 Thread Wei ZHOU
Hi Pritam, Which npm and nodejs version do you use ? -Wei On Mon, 7 Feb 2022 at 14:44, Pritam Neog wrote: > Yes I've followed the steps. If I run *npm start* after the existing errors > in *npm install*, the following is produced: > > ERROR Error loading /home/neoggg/lab/cloudstack/ui/vue.co

Re: Management server won't start

2022-02-07 Thread Pritam Neog
Yes I've followed the steps. If I run *npm start* after the existing errors in *npm install*, the following is produced: ERROR Error loading /home/neoggg/lab/cloudstack/ui/vue.config.js: ERROR ValidationError: Invalid options object. Ignore Plugin has been initialized using an options object t

Re: Management server won't start

2022-02-07 Thread Wei ZHOU
Hi Pritam, Did you follow the steps on https://github.com/apache/cloudstack/blob/main/ui/README.md ? -Wei On Mon, 7 Feb 2022 at 13:22, Pritam Neog wrote: > Hello Wei, > *npm install* produces the following error. > > npm ERR! code ERESOLVE > npm ERR! ERESOLVE unable to resolve dependency tree

Re: Management server won't start

2022-02-07 Thread Pritam Neog
Hello Wei, *npm install* produces the following error. npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: cloudstack-ui@1.0.0 npm ERR! Found: vue@3.2.30 npm ERR! node_modules/vue npm ERR! vue@"^3.2.30" from the root project npm ERR! npm

Re: Management server won't start

2022-02-04 Thread Wei ZHOU
Hi, I think it is because you use python2 not python3. You can create a docker container to run a simulator environment. Please refer to https://github.com/apache/cloudstack/tree/main/tools/docker I have built a docker image for cloudstack 4.16.0.0, you can try it as well: https://hub.docker.com

Re: Management server won't start

2022-02-03 Thread Pritam Neog
Thanks Wei and yes my management server was up and running. My motive was to deploy a simulator based environment. Now when I run *python2 tools/marvin/marvin/deployDataCenter.py -i setup/dev/advanced.cfg* it throws the following error: Traceback (most recent call last): File "tools/marvin/marvi

Re: Management server won't start

2022-02-03 Thread Wei ZHOU
Hi, It looks like the management server is running. you can check if the port 8080 is open. for the UI, you can start it in another terminal. cd ui npm install npm start Please refer to https://github.com/apache/cloudstack/blob/main/ui/README.md -Wei On Thu, 3 Feb 2022 at 19:34, Pritam Neog