无法连接到 SOCKS 代理:连接被拒绝:连接

Posted

技术标签:

【中文标题】无法连接到 SOCKS 代理:连接被拒绝:连接【英文标题】:Can't connect to SOCKS proxy:Connection refused: connect 【发布时间】:2014-05-18 09:17:27 【问题描述】:

我收到以下错误。检查了许多解决方案,但没有得到结果。

未连接到数据库 - 网络编码 com.mysql.jdbc.exceptions.jdbc4.CommunicationsException:通信链路故障 错误:java.lang.NullPointerException 最后一个成功发送到服务器的数据包是 0 毫秒前。 驱动没有收到来自服务器的任何数据包。

以下是数据库连接代码。

public class DBConnect 
    // System.out.println("MySQL Connect Example.");

    public static Connection getConnection() 
        Connection conn = null;
        String url = "jdbc:mysql://127.0.0.1:3306/";
        String dbName = "networkcoding";
        String driver = "com.mysql.jdbc.Driver";
        String userName = "root";
        String password = "xampp123";
        try 
            Class.forName(driver).newInstance();
            conn = DriverManager.getConnection(url + dbName, userName, password);
            System.out.println("Connected to the database "+dbName);
            //conn.close();
            //System.out.println("Disconnected from database");
         catch (Exception e) 
            System.out.println("Not Connected to the database - "+dbName);
            e.printStackTrace();
        
        return conn;
    

    public static void main(String arg[])
        DBConnect.getConnection();
    

错误出现在代码的以下部分:

package privacysensor;

import java.io.File;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Random;
import javax.swing.JOptionPane;

public class Sensors extends javax.swing.JFrame 

    /**
     * Creates new form Sensors
     */
    String s1 = "", s2 = "", s3 = "", s4 = "", s5 = "", s6 = "", s7 = "", s8 = "", s9 = "";
    DBConnect c = new DBConnect();
    DateFormat df = new SimpleDateFormat("hh:mm a");
    Calendar cal1 = Calendar.getInstance();
    org.jdesktop.application.ResourceMap resourceMap =
        org.jdesktop.application.Application.getInstance(
            privacysensor.PrivacySensorApp.class).getContext().getResourceMap(Sensors.class);
    Class1 x = new Class1();
    int id, id1;

    public Sensors() 
        initComponents();
        try 
            id = x.idgeneration();
            id1 = x.Tidgeneration();
            Connection c1 = c.getConnection();
            Connection c2 = c.getConnection();
            PreparedStatement pst = c1.prepareStatement("update sensors set status='Offline' where id=" + id);
            int s = pst.executeUpdate();
            if (s == 0) 
                System.out.println("Not updated");
             else 
                System.out.println("Updated");
            
            PreparedStatement pst1 = c2.prepareStatement("update timing set status='Offline' where id=" + id1);

            s = pst1.executeUpdate();
            if (s == 0) 
                System.out.println("Timer updated");
             else 
                System.out.println("TImer not updated");
            
         catch (Exception e) 
            System.out.println(e);
        
        ...    // End of variables declaration                   
    

欢迎提出任何建议。谢谢,

【问题讨论】:

***.com/questions/2121829/… 你能提供完整的堆栈跟踪吗? 它是什么?拒绝连接?还是空指针异常? SOCKS 代理在哪里变得更时尚?有什么问题? 谢谢大家,我会尽快解决的。我删除了代理设置。从stacktrace中了解到Can't connect to SOCKS proxy:Connection denied: connect 除了您奇怪的标题之外,您的问题中没有关于 SOCKS 代理的任何内容。不清楚你在问什么。 【参考方案1】:

我使用的是 mac OS X,但出现错误:Can't connect to SOCKS proxy:Connection refused: connect. 我打开了: 系统偏好设置 -> 网络 -> 高级 -> 代理 -> 未选中的 SOCKS 代理

这解决了问题。

【讨论】:

【参考方案2】:

在堆栈跟踪中,我收到错误无法连接到 SOCKS 代理:连接被拒绝:连接 我认为这是因为系统代理设置,连接被拒绝。删除代理,它会像魅力一样工作。要删除 Windows 10 中的代理设置, 打开设置 - 点击网络和互联网 - 点击代理 在手动代理设置中,取消选中使用代理服务器

谢谢大家。

【讨论】:

您的问题的堆栈跟踪中没有此类错误。

以上是关于无法连接到 SOCKS 代理:连接被拒绝:连接的主要内容,如果未能解决你的问题,请参考以下文章

无法连接到 dante socks 5 代理服务器

Ejabberd 无法连接到“localhost”:3306:错误,“连接失败:连接被拒绝”

initctl:无法连接到 Upstart:无法连接到套接字 /com/ubuntu/upstart:连接被拒绝

Laravel Dusk 错误:无法连接到 localhost 端口 9515:连接被拒绝

initctl:无法连接到 Upstart:无法连接到套接字 /com/ubuntu/upstart:docker 映像中的连接被拒绝

Heroku Rails 4 无法连接到服务器:连接被拒绝