8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

WSL 2 ssh 直通连接被拒绝

gregoiregentil 2月前

43 0

我正在尝试在 WSL2 上的 Ubuntu 中设置 ssh 服务器。我在 Ubuntu 的端口 22 上运行服务器,然后我配置了从 Windows 主机上的端口 25252 到 Ubun 上的端口 22 的端口转发...

我正在尝试在 WSL2 上的 Ubuntu 中设置 ssh 服务器。我的服务器在 Ubuntu 的端口 22 上运行,然后我配置了从 Windows 主机上的端口 25252 到 Ubuntu 中的端口 22 的端口转发。我可以从 Windows 和本地网络上的其他计算机访问 Ubuntu 服务器。我还在路由器上设置了端口转发,以将外部端口 22222 转发到内部端口 25252。但是,当我尝试使用我的公共 IP 进行 ssh 连接时,每个端口都显示“连接被拒绝”。我在 Windows 中为端口 25252 添加了防火墙规则,甚至尝试完全禁用防火墙,但无济于事。任何帮助都将不胜感激。

帖子版权声明 1、本帖标题:WSL 2 ssh 直通连接被拒绝
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由gregoiregentil在本站《ubuntu》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 我正在尝试设置 OpenStreetMap 瓦片服务器,但服务器拒绝安装 apache2,因为 cpanel 中现有的版本阻止渲染器工作。看起来它也

    我正在尝试设置一个 OpenStreetMap 切片服务器,但由于 cpanel 中现有版本导致渲染器无法工作,服务器拒绝安装 apache2。

    看起来它还安装了与 apache2 协同工作的 libapache2-mod-tile,但有什么办法可以让它与我的 Apache 版本 \'Apache/2.4.59 (cPanel)\' 一起工作

    一切都已完成,直到测试 /hot/0/0/0.png 链接,该链接仅出现 404 错误,而不是显示世界地图。我已按照他们的示例安装了阿塞拜疆数据。

    我按照这里的说明进行操作: https://switch2osm.org/serving-tiles/manually-building-a-tile-server-ubuntu-24-04-lts/

  • 我成功地在 Ubuntu 上安装了 postgresql 12 数据库。问题出在重启时。我无法从远程计算机访问 postgresql,直到我使用 sudo systemctl restart post 重新启动集群...

    我成功地在我的 Ubuntu 上安装了 postgresql 12 数据库。问题出在重启时。我无法从远程计算机访问 postgresql,直到我使用以下命令重启集群

    sudo systemctl restart postgresql@12-main
    

    重启前的状态是:

     [email protected] - PostgreSQL Cluster 12-main
         Loaded: loaded (/lib/systemd/system/[email protected]; enabled; vendor preset: enabled)
         Active: active (running) since Thu 2024-07-11 09:32:29 UTC; 2min 7s ago
        Process: 1157 ExecStart=/usr/bin/pg_ctlcluster --skip-systemctl-redirect 12-main start (code=exited, status=0/SUCCESS)
       Main PID: 1258 (postgres)
          Tasks: 7 (limit: 1015)
         Memory: 37.3M
         CGroup: /system.slice/system-postgresql.slice/[email protected]
                 1258 /usr/lib/postgresql/12/bin/postgres -D /var/lib/postgresql/12/main -c config_file=/etc/postgresql/12/main/postgresql.conf
                 1261 postgres: 12/main: checkpointer
                 1262 postgres: 12/main: background writer
                 1263 postgres: 12/main: walwriter
                 1264 postgres: 12/main: autovacuum launcher
                 1265 postgres: 12/main: stats collector
                 1266 postgres: 12/main: logical replication launcher
    
    Jul 11 09:32:23 orangepilite2 systemd[1]: Starting PostgreSQL Cluster 12-main...
    Jul 11 09:32:29 orangepilite2 systemd[1]: Started PostgreSQL Cluster 12-main.
    

    重启前允许本地登录:

    orangepi@orangepilite2:~$ sudo -u postgres psql
    psql (12.19 (Ubuntu 12.19-0ubuntu0.20.04.1))
    Type "help" for help.
    
    postgres=#
    
  • JimF 2月前 0 只看Ta
    引用 3

    我是新手。我在 AWS Lightsail 上托管的 Ubuntu 上安装了 Apache。我使用 Let's Encrypt 为我的域部署了 SSL,现在我的域正在解析到我的 Apache 服务的子目录...

    我是新手。我在 AWS Lightsail 上托管的 Ubuntu 上安装了 Apache。

    我使用 Let's Encrypt 为我的域部署了 SSL,现在我的域正在解析到托管 Apache 服务器的子目录。理想情况下,我希望我的 Apache 服务器可以通过以下方式访问:

    https://example.com/something

    而是被解决

    https://example.com

    我的服务器位置如下 /var/www/html/something/ ,配置文件如下:

    <VirtualHost *:443>   
    
    ServerName https://example.com/something 
    
    SSLEngine on
    
    SSLCertificateFile /etc/letsencrypt/live/example.com/fullchain.pem
    SSLCertificateKeyFile/etc/letsencrypt/live/example.com/privkey.pem
     
    DocumentRoot
    /var/www/html/something
    
    <Directory /var/www/html> AllowOverride All
    
    </Directory>
    
    ErrorLog ${APACHE_LOG_DIR}/error.log
    
    CustomLog ${APACHE_LOG_DIR}/access.log combined
    
    </VirtualHost>
    

    我还添加了相同的配置参数 /etc/apache2/apache2.conf .

  • URL 的各个路径无法解析到不同的服务器。只有(子)域名通过 DNS 定义客户端连接到哪个服务器 - 所有路径(无论是 / 还是 /something )都将由该服务器处理(1).

    https://example.com /something
     
                           
                            path within the server
             
              the server
    

    ,并且:这意味着你的 始终处理 https://example.com/... 整个

    • p2

    • 点3

      点4

      点5


    (1)虽然该服务器可以(并且很常见)将 代理 到其他服务器(例如,Nginx 处理 example.com 并仅将 /something 代理到 Apache),但这仍然不会改变它的工作方式:最初对整个(子)域的所有请求仍然转到单个程序。

返回
作者最近主题: