因此,我第一次深入研究了在没有控制面板的情况下运行服务器的世界,通过终端完成所有操作,并在需要时偶尔登录桌面 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)我需要做什么才能实现这一目标?
非常感谢。