Installed on Ubuntu server, how to view in broswer remotely?

I have successfully installed neo4j server onto my Ubuntu 20.04.4 LTS server instance on AWS. Here is the status:

ā— neo4j.service - Neo4j Graph Database
     Loaded: loaded (/lib/systemd/system/neo4j.service; enabled; vendor preset: enabled)
     Active: active (running) since Sun 2022-05-15 18:54:01 UTC; 46min ago
   Main PID: 488 (java)
      Tasks: 59 (limit: 1145)
     Memory: 456.0M
     CGroup: /system.slice/neo4j.service
             ā”œā”€ 488 /usr/bin/java -Xmx128m -classpath /usr/share/neo4j/lib/*:/usr/share/neo4j/etc:/usr/share/neo4j/repo/* -Dapp.na>
             └─1702 /usr/lib/jvm/java-11-openjdk-amd64/bin/java -cp /var/lib/neo4j/plugins/*:/etc/neo4j/*:/usr/share/neo4j/lib/* ->

May 15 18:54:32 ip-172-31-30-52 neo4j[1702]: 2022-05-15 18:54:32.957+0000 INFO  Bolt enabled on localhost:7687.
May 15 18:54:37 ip-172-31-30-52 neo4j[1702]: 2022-05-15 18:54:37.401+0000 INFO  Remote interface available at http://localhost:747>
May 15 18:54:37 ip-172-31-30-52 neo4j[1702]: 2022-05-15 18:54:37.433+0000 INFO  id: ******>
May 15 18:54:37 ip-172-31-30-52 neo4j[1702]: 2022-05-15 18:54:37.436+0000 INFO  name: system
May 15 18:54:37 ip-172-31-30-52 neo4j[1702]: 2022-05-15 18:54:37.436+0000 INFO  creationDate: 2022-05-15T18:54:28.751Z
May 15 18:54:37 ip-172-31-30-52 neo4j[1702]: 2022-05-15 18:54:37.437+0000 INFO  Started.
May 15 18:55:19 ip-172-31-30-52 neo4j[1702]: 2022-05-15 18:55:19.129+0000 WARN  The client is unauthorized due to authentication f

I can successfully open and run cypher-shell:
neo4j@neo4j>

Now I want to view my data graph in a broswer. Because the server resides on my Ubuntu server on AWS ec2, and it is listening to localhost, if I try http://localhost:7473 it just hangs forever and can't open.

How to configure so that I can both log in from bolt://localhost and open from a remote browser?
Thanks!

Please provide the following information if you ran into a more serious issue:

  • Ubuntu 20.04.4 LTS instance on AWS ec2

Hello! from you status message it looks like your database instance has been configured to listen on port 747, and not 7474 or 7473. Also depending on you network setup you might have to change the listening address to 0.0.0.0 instead of localhost or if you want to access it externally. See this page in the docs for the config values. Ports - Operations Manual