導航:首頁 > 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設置域名相關的知識