gpt4 book ai didi

linux - 将域名链接到服务器

转载 作者:太空宇宙 更新时间:2023-11-04 04:16:47 25 4
gpt4 key购买 nike

关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

5年前关闭。




Improve this question




因此,我第一次深入研究了在没有控制面板的情况下运行服务器的世界,通过终端完成所有操作,并在需要时偶尔登录桌面 gui。

据我所知,我几乎所有东西都在工作,防火墙很麻烦,但我想我现在已经搞定了。

我不能完全解决的最后一件事是如何让我购买的域名正确指向我的服务器(我总是通过控制面板完成此操作,之前大部分操作都是自动化的)。

这些是我到目前为止采取的步骤(这些可能是错误的,我一直在疯狂地搜索这件事,但到处都告诉我做一些不同的事情,所以如果有问题请告诉我)。

  • 购买的名称名称,例如“mydomain.com”
  • 让服务器运行 Ubuntu 64 位。 IP 地址,例如“1.2.3.4”
  • 主机为我提供了 3 个“DNS 解析器”,例如:“1.1.1.1”、“1.1.1.2”、“1.1.1.3”
  • 我已经在我的服务器上设置了主机名
  • 在终端输出中运行“主机名”:mydomain
  • 检查/etc/hostname 输出:mydomain.com
  • 我已将这 3 个 DNS 解析器添加到我的/etc/resolv.conf 文件中,如下所示:
    domain mydomain.com
    search mydomain.com
    nameserver 1.1.1.1
    nameserver 1.1.1.2
    nameserver 1.1.1.3
  • 我已经在我的 httpd.conf 文件中设置了虚拟主机:
    <VirtualHost 1.2.3.4:80>
    ServerName mydomain.com
    ServerAlias mydomain
    DocumentRoot /var/www/mysite
    </VirtualHost>

  • 现在从这里开始,我一直在玩不同的东西。目前我已经进入我的域名注册面板并将三个域名服务器设置为“ns1.mydomain.com”、“ns2.mydomain.com”、“ns3.mydomain.com”。

    我已经安装了 webmin 来尝试设置 DNS 区域记录,这就是我目前在各种命令的输出中得到的:

    (其中 1.1.1.1、1.1.1.2、1.1.1.3 是那些 DNS 解析器)

    [b]nslookup -sil 本地主机[/b]
    conn@duckfusion:~$ nslookup -sil localhost
    ;; Got SERVFAIL reply from 1.1.1.2, trying next server
    ;; Got SERVFAIL reply from 1.1.1.3, trying next server
    ;; connection timed out; no servers could be reached

    [b]nslookup -sil mydomain.com[/b]
    conn@duckfusion:~$ nslookup -sil mydomain.com
    ;; Got SERVFAIL reply from 1.1.1.2, trying next server
    ;; Got SERVFAIL reply from 1.1.1.3, trying next server
    ;; connection timed out; no servers could be reached

    这是我的“named.conf”文件:
    // This is the primary configuration file for the BIND DNS server named.
    //
    // Please read /usr/share/doc/bind9/README.Debian.gz for information on the
    // structure of BIND configuration files in Debian, *BEFORE* you customize
    // this configuration file.
    //
    // If you are just adding zones, please do that in /etc/bind/named.conf.local

    include "/etc/bind/named.conf.options";
    include "/etc/bind/named.conf.local";
    include "/etc/bind/named.conf.default-zones";

    [u]named.conf.options[/u]
    options {
    directory "/var/cache/bind";

    // If there is a firewall between you and nameservers you want
    // to talk to, you may need to fix the firewall to allow multiple
    // ports to talk. See http://www.kb.cert.org/vuls/id/800113

    // If your ISP provided one or more IP addresses for stable
    // nameservers, you probably want to use them as forwarders.
    // Uncomment the following block, and insert the addresses replacing
    // the all-0's placeholder.

    forwarders {
    1.1.1.1; 1.1.1.2; 1.1.1.3; 208.67.222.222; 208.67.220.220;
    };

    //========================================================================
    // If BIND logs error messages about the root key being expired,
    // you will need to update your keys. See https://www.isc.org/bind-keys
    //========================================================================
    dnssec-validation auto;

    auth-nxdomain no; # conform to RFC1035
    listen-on-v6 { any; };
    allow-query {
    any;
    };
    listen-on port 53 {
    any;
    };
    };

    [u]named.conf.local[/u]
    //
    // Do any local configuration here
    //

    // Consider adding the 1918 zones here, if they are not used in your
    // organization
    //include "/etc/bind/zones.rfc1918";

    zone "mydomain.com" {
    type master;
    file "/var/lib/bind/mydomain.com.hosts";
    };

    [u]/var/lib/bind/mydomain.com.hosts[/u](其中 1.2.3.4 是我服务器的 IP)
    $ttl 38400
    mydomain.com. IN SOA mydomain.com. me.myemail.com. (
    1366054515
    10800
    3600
    604800
    38400 )
    mydomain.com. IN NS mydomain.com.
    mydomain.com. IN A 1.2.3.4
    www.mydomain.com. IN A 1.2.3.4
    mail.mydomain.com. IN A 1.2.3.4
    ftp.mydomain.com. IN A 1.2.3.4
    ns1.mydomain.com. IN A 1.2.3.4
    ns2.mydomain.com. IN A 1.2.3.4
    ns3.mydomain.com. IN A 1.2.3.4
    mydomain.com. IN NS ns1.mydomain.com.
    mydomain.com. IN NS ns2.mydomain.com.
    mydomain.com. IN NS ns3.mydomain.com.
    mydomain.com. IN MX 10 mail.mydomain.com.

    这就是我所知道的。

    我显然可以通过 IP 地址作为 URL 访问服务器,但到目前为止还不是通过域名。

    谁能告诉我:

    A)我哪里出错了
    B)我需要做什么才能实现这一目标?

    非常感谢。

    最佳答案

    运行你自己的名字是多余的,不需要。有效设置如下所示:

  • 您的网络服务器托管服务提供商(您的网站所在的位置)为您提供了一些 DNS 解析器。这些旨在为您的 Web 服务器提供 DNS 解析,以便它可以找到 Internet 上的其他主机。这些解析器与托管您的域无关,您无法更改它们的域定义。
  • 您的 DNS 托管服务提供商拥有自己的 DNS 服务器,默认情况下使用这些服务器托管您的 DNS“A”记录。如果您确实重新配置了 DNS 托管帐户以使用 Web 提供商的 DNS 服务器,那么这是一个错误。您无法将 DNS 记录添加到这些服务器。
  • 在您的 DNS 托管服务提供商的控制面板上,首先将其设置回使用他们的 DNS 服务器;然后为您的域创建一个“A”记录,指向您的网络服务器主机的 IP。

  • 总之:
    DNS Hosting Provider
    DNS Server(s) contain:
    www.yourserver.com A 1.2.3.4
    alias.yourserver.com CNAME www.yourserver.com (maybe)
    yourserver.com MX where.you.receive.mail (maybe)

    Web Hosting Provider
    Your web server at 1.2.3.4
    /etc/resolv.conf
    nameserver 1.1.1.1
    nameserver 1.1.1.2
    nameserver 1.1.1.3

    这就是您需要做的所有事情,其他人才能找到您的服务器。

    运行您自己的 DNS 的唯一原因是托管由多台计算机组成的整个网络,在防火墙后面,或者托管整个 C 类或更多 IP 地址集。为此,您需要与其他提供商达成对等和路由协议(protocol),我认为您没有。

    编辑
    $ dig duckfusion.com

    ; <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6_4.4 <<>> duckfusion.com
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 32080
    ;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 5, ADDITIONAL: 17

    ;; QUESTION SECTION:
    ;duckfusion.com. IN A

    ;; ANSWER SECTION:
    duckfusion.com. 1800 IN A 87.117.219.53
    duckfusion.com. 1800 IN A 192.31.186.140

    ;; AUTHORITY SECTION:
    duckfusion.com. 172800 IN NS dns4.registrar-servers.com.
    duckfusion.com. 172800 IN NS dns5.registrar-servers.com.
    duckfusion.com. 172800 IN NS dns3.registrar-servers.com.
    duckfusion.com. 172800 IN NS dns1.registrar-servers.com.
    duckfusion.com. 172800 IN NS dns2.registrar-servers.com.

    关于linux - 将域名链接到服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16044923/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com