AMS
  • What's AMS
  • Introduction
    • Features
    • AXView 3.0
      • Installation
    • MaaS
    • Hardware Platform Support List
  • Case Study
    • Automation
    • Environmental Signals
    • Energy Management
  • Snapshot Preview
    • AXView 3.0
    • MaaS
  • Data Processing
    • Source Setting
    • Flow-design
      • Core Nodes
        • Source_in
        • Source_out
    • Native Nodes
      • e-mail
    • Visualization Dashboard
  • FAQ
    • How to install nodes offline with npm-bundle?
    • How to configure the DDNS client on Linux
    • How to access hardware monitoring with dashboard?
    • How to change web service's port?
    • How to export configuration data?
    • How to change MQTT broker's port?
Powered by GitBook
On this page

Was this helpful?

  1. FAQ

How to change web service's port?

1.Open server.js with editor:

sudo nano /usr/bin/AXView30/SensorNetwork/Webservices/server.js

2.Modify the port setting:

// set our application port 
var port = process.env.PORT || 8080;

3.Change port number to 3088.

// set our application port 
var port = process.env.PORT || 3088;

4.Reboot the device, and you'll see AXView 3.0 is running on port 3088.

PreviousHow to access hardware monitoring with dashboard?NextHow to export configuration data?

Last updated 5 years ago

Was this helpful?