前提・実現したいこと
localhost:8080/addに、SpringBootのプロジェクトを表示させたいのですが、「localhost で接続が拒否されました。」というエラーで表示できません。プロジェクト自体はテストを実行したところ、エラーは出てません。
サーバーサイドは勉強し始めたばかりで、色々ググっては試してみたのですが、どうしても解決できなかったので質問させていただきました。よろしくお願いします。
環境
Intellij, Mac, SpringBoot, Kotlin, Gradle
プラグインバージョン(build.gradle.ktsファイル)
plugins { id("org.springframework.boot") version "2.3.7.RELEASE" id("io.spring.dependency-management") version "1.0.10.RELEASE" kotlin("jvm") version "1.3.72" kotlin("plugin.spring") version "1.3.72" kotlin("plugin.jpa") version "1.3.72" }
ターミナルでやったこと
①
application.properties ファイルに server.port=8181 を書いて、localhost:8181/add (または localhost:8181/ )を見たけど変わらず
②
Sudo netstat -tulpn Password:入力 netstat: n: unknown or uninstrumented protocol
③
ユーザー名 demo_db % curl http://localhost:8080/add curl: (7) Failed to connect to localhost port 8080: Connection refused
④
ユーザー名 demo_db % nmap localhost -p 8181/add zsh: command not found: nmap
ターミナル全体のコード
ユーザー名 ~ % curl --version curl 7.64.1 (x86_64-apple-darwin19.0) libcurl/7.64.1 (SecureTransport) LibreSSL/2.8.3 zlib/1.2.11 nghttp2/1.39.2 Release-Date: 2019-03-27 Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtsp smb smbs smtp smtps telnet tftp Features: AsynchDNS GSS-API HTTP2 HTTPS-proxy IPv6 Kerberos Largefile libz MultiSSL NTLM NTLM_WB SPNEGO SSL UnixSockets ユーザー名 demo_db % curl localhost:8080/add -d name=First curl: (7) Failed to connect to localhost port 8080: Connection refused ユーザー名 demo_db % curl localhost:8080/add -d name=First curl: (7) Failed to connect to localhost port 8080: Connection refused ユーザー名 demo_db % curl localhost:8080/add -d name=First curl: (7) Failed to connect to localhost port 8080: Connection refused ユーザー名 demo_db % curl -I "localhost" curl: (7) Failed to connect to localhost port 80: Connection refused ユーザー名 demo_db % curl -I 127.0.0.1 curl: (7) Failed to connect to 127.0.0.1 port 80: Connection refused ユーザー名 demo_db % curl -I 192.168.100.117 curl: (7) Failed to connect to 192.168.100.117 port 80: Connection refused ユーザー名 demo_db % curl http: // localhost: 8080/add curl: (6) Could not resolve host: http curl: (3) URL using bad/illegal format or missing URL curl: (7) Failed to connect to localhost port 80: Connection refused curl: (7) Couldn't connect to server ユーザー名 demo_db % curl http://localhost:8080/add curl: (7) Failed to connect to localhost port 8080: Connection refused ユーザー名 demo_db % curl http://localhost:8181/add curl: (7) Failed to connect to localhost port 8181: Connection refused ユーザー名 demo_db % curl http://localhost:8181/ curl: (7) Failed to connect to localhost port 8181: Connection refused ユーザー名 demo_db % Sudo netstat -tulpn Password: netstat: n: unknown or uninstrumented protocol ユーザー名 demo_db % netstat -ln | grep 8181 ユーザー名 demo_db % Sudo netstat -tulpn netstat: n: unknown or uninstrumented protocol ユーザー名 demo_db % -v zsh: command not found: -v ユーザー名 demo_db % sudo lsof -nPi -sTCP:LISTEN COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME postgres 584 ユーザー名 7u IPv6 0x84035d9170269c1d 0t0 TCP [::1]:5432 (LISTEN) postgres 584 ユーザー名 8u IPv4 0x84035d917443140d 0t0 TCP 127.0.0.1:5432 (LISTEN) postgres 584 ユーザー名 10u IPv6 0x84035d916b8a8bdd 0t0 UDP [::1]:65219->[::1]:65219 (長すぎるので一部省略) Code\x20H 1577 ユーザー名 44u IPv6 0x84035d917e66cb1d 0t0 TCP *:45556 (LISTEN) postgres 13060 postgres 4u IPv6 0x84035d9186fcc23d 0t0 TCP *:5434 (LISTEN) postgres 13060 postgres 10u IPv6 0x84035d916efedbdd 0t0 UDP [::1]:64363->[::1]:64363 pgAdmin4 13275 ユーザー名 15u IPv4 0x84035d919355cded 0t0 TCP 127.0.0.1:60496 (LISTEN) ユーザー名 demo_db % nmap localhost -p 8080 zsh: command not found: nmap ユーザー名 demo_db % nmap localhost -p 8181 zsh: command not found: nmap ユーザー名 demo_db % Sudo netstat -tulpn Password: netstat: n: unknown or uninstrumented protocol ユーザー名 demo_db % curl http://localhost:8080/add curl: (7) Failed to connect to localhost port 8080: Connection refused ユーザー名 demo_db % netstat -ln | grep 8181 ユーザー名 demo_db % Sudo netstat -tulpn netstat: n: unknown or uninstrumented protocol ユーザー名 demo_db % nmap localhost -p 8181/add zsh: command not found: nmap
あなたの回答
tips
プレビュー