Hướng Dẫn Cài đặt DFS Step By Step - Nguyen Manh Dung
Có thể bạn quan tâm
Giới thiệu
Nếu trong công ty của bạn có nhiều file server chứa nhiều dữ liệu quan trọng và bạn cần phải giữ các dữ liệu này luôn sẵn sàng hoạt động để phục vụ người dùng. Hơn nữa, sau này công ty mở rộng thêm các site chi nhánh và ở đó cũng có file server, thì dữ liệu sẽ bị phân tán và nằm rời rạc trên các file server. Khi người dùng muốn truy cập một dữ liệu nào đó thì sẽ rất khó khăn, vì phải xác định dữ liệu nằm ở file server nào trong hệ thống mạng.
Distributed File System (DFS) là một giải pháp cho phép người quản trị tập trung các dữ liệu nằm rời rạc trên các file server về một thư mục chung và thực hiện các tính năng replicate nhằm đảm bảo dữ liệu luôn sẵn sang khi có sự cố về file server. Bao gồm 2 tính năng : DFS Namespace và DFS Replication.
Cung cấp 3 giải pháp :
- Sharing File Across banch office : người dùng đi ở site nào cũng có thể truy cập các thư mục trên, và họ lưu dữ liệu trên các thư mục này thì dữ liệu sẽ được replicate qua các site khác, nhờ vào DFS Replication
- Data collection : dữ liệu của các file server ở chi nhánh sẽ được replicate tới văn phòng chính hoặc data center, điều này giúp tập trung các dữ liệu về một nơi duy nhất. Sau đó người quản trị ở văn phòng chính sẽ dùng các giải pháp backup để sao lưu toàn bộ dữ liệu.
- Data distribution : kết hợp DFS Namespace và DFS Replication cho các thư mục như Software, Trainning, Document, Project. Người dùng sẽ dễ dàng truy cập và tăng độ sẵn sàng khi có sự cố xảy ra (nhờ vào tính năng DFS Replication), khi người dùng không truy cập được tới DFS Server trong Site của họ, thì hệ thống sẽ tự redirect người dùng qua DFS Server của Site khác. Dữ liệu vẫn đầy đủ.
(nguồn bài viết phần trên : https://huypd.wordpress.com/)
Hi all,
Hôm nay mình sẽ cùng các bạn cài đặt DFS (Distributed File System ) nhé !
Phần đầu mình copy từ blog của bạn Huy vì thấy cách giải thích của bạn về DFS khá dễ hiểu (chi tiết bài hướng dẫn của bạn Huy có thể xem tại đây)
Thông thường , để access file share , chúng ta sử dụng Universal Naming Converntion(UNC) để truy cập vào nội dung của các file được chia sẻ.
Với các công ty lớn có nhiều file servers trải rộng trên khắp thế giới thì việc bắt users tìm ra thư mục chia sẻ mình cần khá là challenge 🙂
Bằng việc sử dụng namespace ,DFS sẽ đơn giản hóa cấu trúc UNC .
- DFS Namespace : cho phép người quản trị nhóm các thư mục share nằm rời rạc trên các file server vào một thư mục đại diện trong hệ thống mạng, người dùng chỉ cần truy cập vào thư mục đại diện là thấy được tất cả các thư mục share trên các file server.
- DFS Namespace trong Windows Server 2012 R2 : hỗ trợ Direct Access bằng cách điều hướng người dùng tới DFS Namespace Server gần nhất để họ truy cập DFS Namespace. Sử dụng phiên bản Windows Management Infrastructure mới nhất (WMIv2) để quản lý DFS Namespace
- Các loại triển khai DFS Namespace : Stand-alone namespace và Domain-based namespace
- Cấu trúc DFS Namespace : bao gồm Namespace Server, Namespace Root folder, Folder, Folder Target.
So, enough said, lets get started with DFS deployment. 😉
** as usual, for this DFS demo, I’m using 3 server 2012 (DC01, SVR01, COMSYS-RODC01) and Window Client (Surface01).
** I will install DFS into SVR01 and COMSYS-RODC01 Server
1 – Always be aware that to deploy DFS you need 2 Servers so that the Folder will replicate each other, so I will install DFS into SVR01 and COMSYS-RODC01 server, you can install DFS simultaneously.
To install DFS in Svr01 server, open Server Manager, on the Dashboard click Add Roles and Features…
2 – In the Before you begin box, click Next…
3 – On the Select installation type box, click Next to proceed (make sure Role-based or feature-based installation is selected)…
4 – On the Select destination server box, click Next to proceed…
5 – On the Select server roles page, expand File and Storage Services, expand File and iSCSI Services, and then select the DFS Namespaces check box, in the Add Roles and Features pop-up box, click Add Features…
6 – Next, make sure you select the DFS Replication check box, and then only click next to proceed…
7 – Next, on the Select features box, click Next…
8 – On the Confirm installation selections box, click Install…
9 – Wait for few minutes for the installation to complete and when the installation completes, click close…
** As I mentioned previously, you need to install DFS in another server also which is in my demo is a COMSYS-RODC01 server…
** Once you confirm both of the Server has been installed with DFS, please proceed with DFS namespace configuration.
10 – 1st, open DFS Management from Server Manager…
11 – Next, on the DFS console, right-click Namespaces, and then click New Namespace (A namespace is a virtual view of shared folders in your server)…
12 – In the New Namespace Wizard, on the Namespace Server page, under Server, type svr01, and then click Next…
13 – Next, on the Namespace Name and Settings box, under Name, type MarketingDocs, and then click Edit Settings…
14 – In the Edit Settings box, under Local Path of shared folder: type C:\DFSRoots\MarketingDocs and select Administrator have full access; other users have read and write permissions, then click OK…
15 – Next, on the Namespace Type box, verify that Domain-based namespace is selected. Take note that the namespace will be accessed by \\comsys.local\MarketingDocs, ensure also that the Enable Windows Server 2008 mode check box is selected, and then click Next…
16 – On the Review Settings and Create Namespace page, click Create…
17 – On the Confirmation box, verify that the Create namespace task is successful, and then click Close…
18 – Next, you need to enable access-based enumeration for the MarketingDocs namespace.
To do so, under Namespaces, right-click \\comsys.local\MarketingDocs, and then click Properties…
19 – In the \\comsys.local\MarketingDocs Properties box, click the Advanced tab, then select the Enable access-based enumeration for this namespace check box, and then click OK…
20 – Next, let’s add the Brochures folder to the MarketingDocs namespace…
To do that, right-click \\comsys.local\MarketingDocs , and then click New Folder…
21 – In the New Folder box, under Name, type Brochures then click Add…
22 – In the Add Folder Target dialog box, type \\comsys-rodc01\Brochures, and then click OK…
23 – In the Warning box, click Yes…
24 – In the Create Share box, in the Local path of shared folder box, type C:\MarketingDocs\Brochures, and select Administrator have full access; other users have read and write permissions, then click OK…
25 – In the Warning box, click Yes to proceed…
26 – Click OK again to close the New Folder dialog box…
27 – Next, I want to add the OnlineAdvert folder to the MarketingDocs namespace, so to do that, right-click \\comsys.local\MarketingDocs, and click New Folder, then In the New Folder box, under Name, type OnlineAdvert, and then, click Add…
28 – In the Add Folder Target box, type \\svr01\OnlineAdvert, and then click OK…
29 -In the Warning box, click Yes to create OnlineAdvert folder…
30 – Next, in the Create Share box, in the Local path of shared folder box, type C:\MarketingDocs\OnlineAdvert, make sure also you select Administrator have full access; other users have read and write permissions, then click OK…
31 – In the Warning box, click Yes…
32 – Click OK again to close the New Folder dialog box (verify that \\svr0\OnlineAdvert is listed) and also Brochures and OnlineAdvert folder is listed under \\comsys.local\MarketingDocs namespaces…
33 – Now lets verify our MarketingDocs namespace and its folder can be access using UNC, open RUN and type \\comsys.local\MarketingDocs, then in the MarketingDocs window, verify that both Brochures and OnlineAdvert is display.
34 – Now is the the second important task which is to configure DFS replication (DFS-R), but before that, why don’t we to create another folder target for Brochures…
Right-click Brochures, and then click Add Folder Target…
35 – In the New Folder Target box, under Path to folder target, type \\svr01\Brochures, and then click OK…
36 – In the Warning box, click Yes to create the shared folder on svr01 server…
37 – Next, in the Create Share box, under Local path of shared folder, type C:\MarketingDocs\Brochures, don’t forget to select Administrator have full access; other users have read and write permissions, then click OK…
38 – In the Warning box, click Yes to create the folder on svr01 server…
39 – In the Replication box, click Yes. The Replicate Folder Wizard starts…
40 – Next, in the Replicate Folder Wizard, on both the Replication Group and Replicated Folder Name page, accept the default settings, and then click Next…
41 – On the Replication Eligibility page, click Next…
42 – On the Primary Member box, I choose SVR01 server to be my Primary DFS server, and then click Next…
43 – On the Topology Selection box, select Full Mesh, and then click Next…
44 – On the Replication Group Schedule and Bandwidth, I choose Full and then click next…
45 – On the Review Settings and Create Replication Group box, click Create…
46 – On the Confirmation box, click Close (verify that all status is Success)…
47 – In the Replication Delay box, click OK…
48 – Next, expand Replication, and then click comsys.local\marketingdocs\brochures, on the right pane, under Memberships tab, verify that both comsys-rodc01 and svr01 server is listed….
49 – To make sure all replication process is running without any issue and also to verify that our second server which is COMSYS-RODC01 server is having same function on DFS, log on into COMSYS-RODC01 server, open DFS and right click namespace and click Add Namespace to Display…
50 – In the Add Namespace to Display box, verify that domain is Comsys.local and under Namespace:, \\Comsys.local\MarketingDocs is listed and then click OK…
51 – Next, in the DFS console on the Comsys-RODC01 server, you should see that both Brochures and OnlineAdvert folder is listed…
52 – Lastly, log on into your client PC as any domain users, open RUN and type \\Comsys.local\MarketingDocs and press enter, and you should notice that marketingdocs folder is pop up with Brochures and OnlineAdvert folder is inside…
We done for now, as at this configuration, you now can start using DFS, but we still have few thing to verify especially on the High Availability.
Wait for my next post, I will go through with High Availability in DFS…. 🙂
Nguồn : https://mizitechinfo.wordpress.com
Chúc các bạn thao tác thành công!
Share this:
Từ khóa » Dfs Wifi Là Gì
-
Giới Thiệu Ngắn Gọn Về Tính Năng DFS | TP-Link Việt Nam
-
[Wireless Router] DFS (Dynamic Frequency Selection) Là Gì Và Nó ...
-
Tôi Có Nên Bật DFS Không? - Nhận Xét Wiki
-
DFS Là Những Kênh WiFi Nào? - Nhận Xét Wiki | # 1 Nguồn Thông Tin ...
-
Dfs WiFi Là Gì
-
[WIFI CHỊU TẢI] Khủng Khiếp Với Khả Năng Chịu Tải Của Xiaomi Wifi ...
-
Kênh 5GHz Tốt Nhất Cho Bộ định Tuyến WiFi Của Bạn [So Sánh]
-
Ưu điểm Và Nhược điểm Của WiFi 802.11ac 5GHz
-
Dịch Vụ Dfs Là Gì - VIETNAMNET.INFO
-
Giới Thiệu đầy đủ Về DFS (Hệ Thống Tệp Phân Tán) [MiniTool Wiki]
-
Công Nghệ Băng Tần 5 GHz - Chào Mừng Bạn đến Với Thế Giới WiFi
-
WiFi 6E Là Gì?
-
Kênh WiFi 5Ghz Tốt Nhất Cho Bộ định Tuyến Của Bạn [December 2020]
-
ZeroWait DFS - Aruba Networks
-
Ưu Nhược điểm Của WiFi 802.11ac 5GHz - FPT CẦN THƠ
-
Enabling The Dynamic Frequency Selection (DFS) Feature ... - Linksys
-
What Is A Distributed File System (DFS)? - Trùm Tin Tức