DevStudio
New Pleskian
Greetings I am working with (Angular 4 not to be mistaken with AngularJS) in PLESK (centOS) 64-bit
Set up steps go nicely as per Angular Docs
Once installed and set up the project can be seen on port 4200 http://localhost:4200/
In my case my.ip.address:4200 or mydomain.com:4200
This does not work. I have turned off PLESK firewall and even added a new rule to allow all incoming on port 4200-4210 and still nothing. Has anyone been able to get this working?
thank you
command line details:
yum install npm
npm uninstall -g angular-cli
npm uninstall -g @angular/cli
npm cache clean
npm install -g @angular/cli@latest
npm install -g typescript
ng new my-app-folder-name
cd my-ap-folder-name
ng serve
netstat -anp | grep ":4200" // is server listening on port 4200 if so what program
sudo lsof -t -i tcp:4200 | xargs kill -9 // kill the program which is listening on 4200
Set up steps go nicely as per Angular Docs
Once installed and set up the project can be seen on port 4200 http://localhost:4200/
In my case my.ip.address:4200 or mydomain.com:4200
This does not work. I have turned off PLESK firewall and even added a new rule to allow all incoming on port 4200-4210 and still nothing. Has anyone been able to get this working?
thank you
command line details:
yum install npm
npm uninstall -g angular-cli
npm uninstall -g @angular/cli
npm cache clean
npm install -g @angular/cli@latest
npm install -g typescript
ng new my-app-folder-name
cd my-ap-folder-name
ng serve
netstat -anp | grep ":4200" // is server listening on port 4200 if so what program
sudo lsof -t -i tcp:4200 | xargs kill -9 // kill the program which is listening on 4200