{"id":6626,"date":"2014-04-20T13:57:39","date_gmt":"2014-04-20T13:57:39","guid":{"rendered":"https:\/\/unknownerror.org\/index.php\/2014\/04\/20\/com-microsoft-sqlserver-jdbc-sqlserverexception-the-tcp-ip-connection-to-the-host-has-failed-collection-of-common-programming-errors\/"},"modified":"2014-04-20T13:57:39","modified_gmt":"2014-04-20T13:57:39","slug":"com-microsoft-sqlserver-jdbc-sqlserverexception-the-tcp-ip-connection-to-the-host-has-failed-collection-of-common-programming-errors","status":"publish","type":"post","link":"https:\/\/unknownerror.org\/index.php\/2014\/04\/20\/com-microsoft-sqlserver-jdbc-sqlserverexception-the-tcp-ip-connection-to-the-host-has-failed-collection-of-common-programming-errors\/","title":{"rendered":"com.microsoft.sqlserver.jdbc.SQLServerException: The TCP\/IP connection to the host has failed.-Collection of common programming errors"},"content":{"rendered":"<ul>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn I am trying to connect to SQL Server 2005 Express with JDBC.\u00a0\u00a0 I am getting the following exception:<\/p>\n<p>Code Snippet<\/p>\n<p>String connectionUrl = &#8220;jdbc:sqlserver:\/\/localhost:1433;&#8221; +\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &#8220;databaseName=IFC3;&#8221;;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ Declare the JDBC objects.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Connection con = null;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Statement stmt = null;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ResultSet rs = null;\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 try {\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ Establish the connection.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Class.forName(&#8220;com.microsoft.sqlserver.jdbc.SQLServerDriver&#8221;);\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 con = DriverManager.getConnection(connectionUrl,&#8221;ifc2&#8243;,&#8221;password&#8221;); com.microsoft.sqlserver.jdbc.SQLServerException: The TCP\/IP connection to the host\u00a0 has failed. java.net.ConnectException: Connection refused: connect\u00a0\u00a0\u00a0 at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(Unknown Source)\u00a0\u00a0\u00a0 at com.microsoft.sqlserver.jdbc.SQLServerConnection.connectHelper(Unknown Source)\u00a0\u00a0\u00a0 at com.microsoft.sqlserver.jdbc.SQLServerConnection.loginWithoutFailover(Unknown Source)\u00a0\u00a0\u00a0 at com.microsoft.sqlserver.jdbc.SQLServerConnection.connect(Unknown Source)\u00a0\u00a0\u00a0 at com.microsoft.sqlserver.jdbc.SQLServerDriver.connect(Unknown Source)\u00a0\u00a0\u00a0 at java.sql.DriverManager.getConnection(DriverManager.java:512)\u00a0\u00a0\u00a0 at java.sql.DriverManager.getConnection(DriverManager.java:171)\u00a0\u00a0\u00a0 at connectURL.main(connectURL.java:43)I am using the code example that came from Microsoft for making a JDBC connection.\u00a0 I looked at my configuration of SQL Server and change to use a static port 1433.\u00a0\u00a0 I shut off Windows firewall to make sure it was not blocking communication. When I try to telnet to port 1433 it saysConnecting To 1433&#8230;Could not open connection to the host, on port 23: ConnectfailedAny suggestions?Thanks,Tom<\/li>\n<li>\n<h3>13 Answers<\/h3>\n<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn1<\/p>\n<p>jdbc:sqlserver:\/\/localhost\\SQLEXPRESS\/Databases\/EPS:1357;user=epsingall;password=welkom1; Slashes\/backslashes like this! Then my error was gone.<\/p>\n<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn2<\/p>\n<p>Hi,\u00a0I have done the below changes Microsoft SQL Server 2005 &#8211;&gt; Configuration Tools &#8211;&gt; SQL Server Configuration ManagerPart I (This will connect to your SQL EXPRESS)- Now, under it go to SQL Server 2005 Network Configuration&#8211;&gt;Protocols for SQLEXPRESS.- Now, enable the VIA options by double click it.<\/p>\n<p>&#8211; Then, open TCP\/IP part and set TCP Dynamic Ports: 1433 (or something else) under Protocal&#8211;&gt;IP Address&#8211;&gt;IP All<\/p>\n<p>Part II (This will connect to your MS SQL Server)- Now, under it go to SQL Server 2005 Network Configuration&#8211;&gt;Protocols for MSSQLSERVER.- Now, enable the VIA options by double click it.- Then, open TCP\/IP part and set TCP Dynamic Ports: 1433 (or something else) under Protocal&#8211;&gt;IP Address&#8211;&gt;IP AllBut still i am getting the exception:SQL Exception: com.microsoft.sqlserver.jdbc.SQLServerException: The TCP\/IP connection to the host JENESYS5\/SQLEXPRESS, port 1433 has failed. Error: &#8220;null. Verify the connection properties, check that an instance of SQL Server is running on the host and accepting TCP\/IP connections at the port, and that no firewall is blocking TCP connections to the port.&#8221;.com.microsoft.sqlserver.jdbc.SQLServerException: The TCP\/IP connection to the host JENESYS5\/SQLEXPRESS, port 1433 has failed. Error: &#8220;null. Verify the connection properties, check that an instance of SQL Server is running on the host and accepting TCP\/IP connections at the port, and that no firewall is blocking TCP connections to the port.&#8221;.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(SQLServerException.java:170)\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 at com.microsoft.sqlserver.jdbc.SQLServerConnection.connectHelper(SQLServerConnection.java:1049)\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 at com.microsoft.sqlserver.jdbc.SQLServerConnection.login(SQLServerConnection.java:833)\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 at com.microsoft.sqlserver.jdbc.SQLServerConnection.connect(SQLServerConnection.java:716)\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 at com.microsoft.sqlserver.jdbc.SQLServerDriver.connect(SQLServerDriver.java:841)\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 at java.sql.DriverManager.getConnection(DriverManager.java:582)\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 at java.sql.DriverManager.getConnection(DriverManager.java:207)\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 at main.main(main.java:20)BUILD SUCCESSFUL (total time: 16 seconds)Could you please help me to resolve this issue.Thanks and Regards,V.Vithya<\/p>\n<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn3<\/p>\n<p>hi,<br \/>\n\u00a0\u00a0 i am facing the problem<\/p>\n<p>The TCP\/IP connection to the host localhost, port 1433 has failed. Error: &#8220;Connection refused: connect. Verify the connection properties, check that an instance of SQL Server is running on the host and accepting TCP\/IP connections at the port, and that no firewall is blocking TCP connections to the port.&#8221;.so i tried to change my port number in configuration manager..but when i open it fails to open saying you do not premission or server is unreachable&#8230;..i thought there was a problem during installation&#8230;so i unistalled sql server and installed it again&#8230;but the error repeats&#8230;can any1 help me rectifying the problem..thanks,<\/p>\n<p>anusha<\/p>\n<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn4<\/p>\n<p>I get exactly the same error:<\/p>\n<p>Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: The TCP\/IP connection to the host ROLAND\/SQLEXPRESS, port 1471 has failed. Error: &#8220;null. Verify the connection properties, check that an instance of SQL Server is running on the host and accepting TCP\/IP connections at the port, and that no firewall is blocking TCP connections to the port.&#8221;.<\/p>\n<p>at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(SQLServerException.java:170)<\/p>\n<p>&#8230;.Strange thing is, I can connect with OSQL.Even stanger, I have a JDBC jndi installed under my app server, than can connect on the port. That is using exaclty the same JDBC driver.<\/p>\n<p>But under Hibernate, it gives this error.<\/p>\n<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn5<\/p>\n<p>jdbc:sqlserver:\/\/localhost\\SQLEXPRESS\/Databases\/EPS:1357;user=epsingall;password=welkom1; Slashes\/backslashes like this! Then my error was gone.<\/p>\n<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn6<\/p>\n<p>You are completely right&#8230; I just tried with this URL and it worked for me too!!! THANKS!!<\/p>\n<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn7<\/p>\n<p>I was facing same problem. But after changing the configuration as mentioned, it is working for me. The connection URL\u00a0when the server has a\u00a0Instance is as follows:<\/p>\n<p>\u00a0 <strong>try {\u00a0 \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Class.forName(&#8220;com.microsoft.sqlserver.jdbc.SQLServerDriver&#8221;); \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 String connectionUrl = &#8220;jdbc:sqlserver:\/\/127.0.0.1:1433; Instance=SQL2008;&#8221;\u00a0+ \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &#8220;databaseName=MB;user=sa;password=123;&#8221;; \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 System.out.println(&#8220;Successful&#8221;); \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Connection con = DriverManager.getConnection(connectionUrl); \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 System.out.println(&#8220;Successful&#8221;); \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 } catch (SQLException e) { \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 System.out.println(&#8220;SQL Exception: &#8220;+ e.toString()); \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 } catch (ClassNotFoundException cE) { \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 System.out.println(&#8220;Class Not Found Exception: &#8220;+ cE.toString());<\/strong><\/p>\n<p><strong>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 }<\/strong><\/p>\n<p>Thanks &amp; Regards,<\/p>\n<p>M. Rabbi<\/p>\n<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn8<\/p>\n<p>Sorry guys.\u00a0 I follow this thread and I still have the same problem.<\/p>\n<p>I have SQL Server 2008<\/p>\n<p>Instance=TRISTAN-PC<\/p>\n<p>DatabaseName=ClientData<\/p>\n<p>Port as usual=1433<\/p>\n<p>User=sa<\/p>\n<p>password=123<\/p>\n<p>I also made sure that i could get access to the database from outside this computer on the network using this User and Password and that worked. But the code doesn&#8217;t work and tried many variant of your suggestions.\u00a0 Any one have an idea?<\/p>\n<p>And here is my code with my last try?<\/p>\n<p>\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \/\/ Create a variable for the connection string. \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 String connectionUrl = &#8220;jdbc:sqlserver:\/\/localhost:1433;&#8221; +<\/p>\n<p>\u00a0\u00a0\u00a0 \u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0&#8220;databaseName=ClientData;&#8221;;<\/p>\n<p>\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \/\/ Declare the JDBC objects.<\/p>\n<p>\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 Connection con = null; \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 Statement stmt = null; \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 ResultSet rs = null; \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 DataStructure dataIn; \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 try { \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \/\/ Establish the connection.<\/p>\n<p>\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 Class.forName(&#8220;com.microsoft.sqlserver.jdbc.SQLServerDriver&#8221;);<\/p>\n<p>\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \/\/Global variable holding the connection \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 LoadVariables.conDBPath = DriverManager.getConnection(connectionUrl,&#8221;sa&#8221;,&#8221;123&#8243;); \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \/\/data model container<\/p>\n<p>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 dataIn = SQLTypePartner.selectType*Partner();<\/p>\n<p>\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 System.out.println(dataIn.toString()); \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 } \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \/\/ Handle any errors that may have occurred. \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 catch (Exception e) { \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 e.printStackTrace(); \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 } \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 finally { \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 dataIn = null; \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 if (rs != null) try { rs.close(); } catch(Exception e) {} \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 if (stmt != null) try { stmt.close(); } catch(Exception e) {} \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 if (con != null) try { con.close(); } catch(Exception e) {} \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 }\/\/try<\/p>\n<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn9<\/p>\n<p>I found my problem, when I took a look at the config under SQL Native Client 10.0 Configuration, Client Protocols and TCP\/IP, I saw Default port 1433 and I assume it was the real port no for the connection.\u00a0 I look further and Saw under SQL Server Network Configuration, Protocol for SQLServer and TCP\/IP, the port number there was completely different (52477)<\/p>\n<p>I try that one and it work without a glitch?<\/p>\n<p>Thanks Guy this thread helped<\/p>\n<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn10<\/p>\n<blockquote>\n<p>I found my problem, when I took a look at the config under SQL Native Client 10.0 Configuration, Client Protocols and TCP\/IP, I saw Default port 1433 and I assume it was the real port no for the connection.\u00a0 I look further and Saw under SQL Server Network Configuration, Protocol for SQLServer and TCP\/IP, the port number there was completely different (52477)<\/p>\n<p>I try that one and it work without a glitch?<\/p>\n<p>Thanks Guy this thread helped<\/p>\n<\/blockquote>\n<p>You are right. This was helpful for me too!!!!!<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn11<\/p>\n<p>Thank u for the gr8 help. It worked for me.<\/p>\n<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn12<\/p>\n<p>Hello Portaladmin,<\/p>\n<p>Just followed your steps&#8230;But this is not working.I&#8217;m trying to access SQL server 2005 table from my HWC iPhone application using Sybase Unwired Platform. Just posted a question here:<\/p>\n<p>Please help me.<\/p>\n<\/li>\n<li><img decoding=\"async\" src=\"http:\/\/i.msdn.microsoft.com\/dn186180.LOGO_Win1211(id-id,MSDN.10).png\" \/><br \/>\nmsdn13<\/p>\n<p>Remember to restart the services under SQL Server Services.\u00a0<\/p>\n<p>I changed the port number to 1433 under IpAll and restarted the services as well as enabling TCP\/IP and making that port number 1433 and it worked for me. best of luck.<\/p>\n<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>msdn I am trying to connect to SQL Server 2005 Express with JDBC.\u00a0\u00a0 I am getting the following exception: Code Snippet String connectionUrl = &#8220;jdbc:sqlserver:\/\/localhost:1433;&#8221; +\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 &#8220;databaseName=IFC3;&#8221;;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ Declare the JDBC objects.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Connection con = null;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Statement stmt = null;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ResultSet rs = null;\u00a0\u00a0\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 try {\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \/\/ Establish the connection.\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 Class.forName(&#8220;com.microsoft.sqlserver.jdbc.SQLServerDriver&#8221;);\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 con = DriverManager.getConnection(connectionUrl,&#8221;ifc2&#8243;,&#8221;password&#8221;); [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-6626","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/posts\/6626","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/comments?post=6626"}],"version-history":[{"count":0,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/posts\/6626\/revisions"}],"wp:attachment":[{"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/media?parent=6626"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/categories?post=6626"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unknownerror.org\/index.php\/wp-json\/wp\/v2\/tags?post=6626"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}