导航:首页 > IDC知识 > debian设置域名

debian设置域名

发布时间:2021-02-17 19:00:57

1、Debian7服务器在搭建Apache2添加域名时出错

sudo apt-get reinstall apache2.2-bin

apache2 是一个 metapackage,重装没有用的。需要重装具体的版软件包。权moles目录在 apache2.2-bin 里面。

2、debian多域名问题

用apache 吧。那个参考资料多。

3、debian这个网络是怎么回事? wget 正常 apt、ping却无法联网,提示无法解析域名……

1. wget下载的是什么抄URL?是IP方式袭还是域名方式?

2. 检查一下DNS设置。
查看DNS服务器设置:/etc/resolv.conf
ping DNS服务器的IP
尝试更换其它DNS服务器,比如223.5.5.5或者114.114.114.114

4、如何在Ubuntu或者Debian设置邮件服务器

1.先决条件
每个域必须有一个DNS服务器。建议不要使用Live域用于测试目的。在本教程中,将在实验室环境中使用测试域example.tst。在这个假设域名的DNS服务器应该在至少以下记录。
example.tst的forward zone配置:
IN MX 10 mail.example.tst.
mail.example.tst. IN A 192.168.10.1

example.tst的Reverse zone配置:
192.168.10.1 IN PTR mail.example.tst.

在配置邮件服务器的过程中,这些记录可以根据系统的要求进行修改。
2.设置主机
首先,必须在/etc/hostname和/etc/hosts文件中指定邮件服务器的主机名。前者应仅包含主机名。
root@mail:~# vim /etc/hostname

mail
root@mail:~# vim /etc/hosts

## IP Fully Qualified Domain Name Hostname ##
192.168.10.1 mail.example.tst mail

增加用户
每一个Linux用户,在默认情况下,系统会为其自动创建一个邮箱。这些用户和邮箱将被用作电子邮件帐户和它们各自的邮箱。创建一个用户是很容易的。
root@mail:~# adser fourbyte

安装和配置SMTP
服务: postfix
配置文件路径 /etc/postfix/
执行脚本 /etc/init.d/postfix
日志文件 /var/log/mail.log
端口 TCP/25
SMTP:安装postfix
postfix是广泛使用的SMTP服务器之一,因为它是稳定的、轻量级的、可扩展的、高度可定制的。安装postfix可以使用apt-get的完成。
root@mail:~# apt-get install postfix

在安装过程中,需要指定电子邮件服务器和域名的类型。

由于此邮件服务器就会直接向目的地发送电子邮件,我们选择Internet Site。
邮件服务器的域名也需要配置,这可以从确保该邮件服务器发送的所有邮件都有@ example.tst作为发件人域。
postfix的配置文件存储在/etc/postfix目录。下面的配置文件是非常重要的。他们中的一些可能不存在,因此需要手动创建。
transport:主要用于定义邮件如何被路由到特定的目标域。绕过DNS查询可以是一个很好的例子。在这种情况下,人们可以发送到域XYZ.com的电子邮件直接通过IP地址XYYX不考虑任何DNS查询的结果。
access:可用于安全目的,如阻止发件人/收件人和他们的域名。
aliases:用于定义用户别名。例如,发送到userA的邮件可以由userB和userC接收。
main.cf:是postfix的配置文件。
SMTP:准备配置文件
差不多可以准备配置文件了。transport与aliases配置文件没有默认提供,需要手动创建。
root@mail:~# cd /etc/postfix
root@mail:/etc/postfix# touch transport aliases

main.cf
首先需要备份main.cf然后再进行修改。根据下面的配置添加或修改配置文件。有关参数的更多详细信息,请参阅官方README和配置手册。
root@mail:/etc/postfix# vim main.cf
## the name of the server ##
myhostname = mail.example.tst

## alias definitions ##
alias_maps = hash:/etc/postfix/aliases
alias_database = hash:/etc/postfix/aliases

## transport definition ##
transport_maps = hash:/etc/postfix/transport

## myorigin defines the domain name for emails originated from this server. In this case, all outgoing mail should have '@example.tst' as sender domain ##
myorigin = example.tst

## mydestination parameter specifies what domains this machine will deliver locally, instead of forwarding to another machine. ##
mydestination = mail.example.tst, localhost.example.tst, localhost, hash:/etc/postfix/transport

## the smarthost address. Not used in this tutorial and will be covered in the future##
relayhost =

## the trusted sender networks. postfix will not forward mails originated from other subnets ##
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 192.168.10.0/24

## mailbox size in bytes. 0 denotes no limit ##
mailbox_size_limit = 0

## postfix will listen on all available interfaces i.e. eth0, eth1, eth2 and so on ##
inet_interfaces = all

transport
邮件域example.tst被定义为在本地传递不需要任何DNS查询。

root@mail:/etc/postfix# vim transport
example.tst local:
.example.tst local:
root@mail:/etc/postfix# postmap transport

aliases
假设所有发送到userA的所有电子邮件可以由userB接收,别名文件需要按如下所述进行修改。

5、请问一下Debian下有没有好的基于Web的域名管理工具

可以试试PHPMyAdmin

6、debian linux 怎么设置sources.list里的那个网址啊 速回

中科大的,速度不错
deb http://debian.ustc.e.cn/debian stable main contrib non-free
deb-src http://debian.ustc.e.cn/debian stable main contrib non-free
deb http://debian.ustc.e.cn/debian proposed-updates main contrib non-free
deb-src http://debian.ustc.e.cn/debian proposed-updates main contrib non-free
deb http://debian.ustc.e.cn/debian-security stable/updates main
#非官方软件包仓库
deb http://debian.ustc.e.cn/debian-uo sid marillat rareware misc ustc
deb-src http://debian.ustc.e.cn/debian-uo sid marillat rareware misc ustc
deb http://security.debian.org/ stable/updates main contrib non-free

7、debianvps怎么绑定域名

可以直接使用IIS的域名绑定就直接了:首先建立站点:
第一步:在Windows 2003中启动IIS组件,然后在网站选项上点鼠标右键选择“新建”-“网站”。

第二步:在网站描述处填写“softer站点”来区分不同网站名称,点“下一步”按钮继续。
第三步:接下来就是主机头设置的关键了,网站IP地址处信息保持默认的“全部未分配”即可,端口是默认的80,最下面的“此网站的主机头”输入一个域名,当然如果真的要对internet发布自己的网站,这个域名是要输入真实的已经注册的已经做好网站备案的。
第四步:选择网站发布的主目录,通过“浏览”按钮定位站点文件夹。
第五步:设置网站访问权限,这个就要根据站点的特征决定。至此就完成了站点的创建和发布工作。

8、debian6 apache虚拟主机绑定域名问题

你域名是在哪里买抄的就去哪里设置,比如你域名在godaddy那买的,godaddy网站就有提供IP地址和域名绑定选项,如果你不会弄,就在网站程序里加跳转,比如如果解析到用户请求的是xx.com 就重定向到www.xx.com。

9、二级域名怎么配置才行,debianOS ,现在是a、b两个站点,分别都是单独的域名配置文件。a.conf和b.conf

发合同功夫如何让他和他

10、linux操作系统访问域名需要配置什么吗

linux和域名是没有任何关系的

linux的选择和做网站的程序有关,
linux只能做php程序的网站
windows可以做asp和php的网站,

与debian设置域名相关的知识