Frequently asked questions and troubleshooting
After compiling and starting Neuron, open page 404
Check whether the port is open
By default, Neuron opens port 7000 and executes the following command to check the status of port 7000:
bash
$ lsof -i:7000If there is no output, it indicates that the port number is not enabled. Execute the following command to open the port: To view firewall status:
bash
$ firewall-cmd --stateIf the returned message isnot running, you must first enable the firewall:
bash
$ systemctl start firewalld.serviceOpen the specified port:
bash
$ firewall-cmd --zone=public --add-port=7000/tcp --permanentRestart the firewall:
bash
$ systemctl restart firewalld.serviceReload firewall:
bash
$ firewall-cmd --reloadSuccess indicates success. After completion, restart Neuron.
Check whether the IP is input correctly
The neuron access format is http://x.x.x.x:7000 Where x.x.x.x represents the gateway address where Neuron is installed. Execute the following command to view the IP address:
bash
$ ifconfigCheck whether the address after inet under the network card matches the entered address.