Questions tagged [replication]

Replication is the process of sharing information so as to ensure consistency between redundant resources, such as software or hardware components, to improve reliability, fault-tolerance, or accessibility.

Replication is the process of sharing information so as to ensure consistency between redundant resources, such as software or hardware components, to improve reliability, fault-tolerance, or accessibility. It could be data replication if the same data is stored on multiple storage devices, or computation replication if the same computing task is executed many times. A computational task is typically replicated in space, i.e. executed on separate devices, or it could be replicated in time, if it is executed repeatedly on a single device.

The access to a replicated entity is typically uniform with access to a single, non-replicated entity. The replication itself should be transparent to an external user. Also, in a failure scenario, a failover of replicas is hidden as much as possible.

It is common to talk about active and passive replication in systems that replicate data or services. Active replication is performed by processing the same request at every replica. In passive replication, each single request is processed on a single replica and then its state is transferred to the other replicas. If at any time one master replica is designated to process all the requests, then we are talking about the primary-backup scheme (master-slave scheme) predominant in high-availability clusters. On the other side, if any replica processes a request and then distributes a new state, then this is a multi-primary scheme (called multi-master in the database field). In the multi-primary scheme, some form of distributed concurrency control must be used, such as distributed lock manager.

1036 questions
-1
votes
1 answer

Stopping both hyper-v replicas from booting

Consider the following hyper-v configuration: host1, running guest1 host2, running guest2 guest1 replicated using hyper-v replication to host2 guest2 replicated using hyper-v replication to host1 Consider the following outage to host2 host2 goes…
628426
  • 103
  • 2
-1
votes
2 answers

Secure communication between two hosted dedicated servers?

I'm planning to host a site on a pair of dedicated servers (both running IIS/SQL Server with SQL replication). Since the hoster only provides a public IP on each machine, how would I secure replication between the two?
steve cook
  • 179
  • 5
-1
votes
1 answer

Replicate server to another enviroment

I am adopting a new enviroment for my application in production. My old env has a lot of configuration, like e-mail server, application server, database, java plataform, etc. I would like to replicate this enviroment and copy it to the new…
-1
votes
1 answer

Repadmin and DNScmd

A little query really in terms of the usage of Repadmin and DNScmd when forcing replication of DNS zones. I'm currently studying for my 70-640 (Active Directory Exam) and was wondering what the difference is in terms of utilizing the said tools for…
PnP
  • 1,684
  • 8
  • 39
  • 65
-1
votes
4 answers

Apache replication

I don't know what I need to search for. I need information about how to "replicate" an Apache server, if one would go down another would take over. Also the Apache server holds a lot of data files. How is it possible to manage and store the files in…
clarkk
  • 2,035
  • 8
  • 24
  • 36
-1
votes
1 answer

Domain controller replication and distribution

What is the proper way to distribute work from the pdc to a bdc for authentication. If the bdc handles authentication, when it increments the bad password count, how is that relayed to the pdc? Does the pdc replicate the bdc (or the bdc is…
-1
votes
2 answers

MySQL replcating huge changing data

Hi I have a master MySQL server with 950 gb of data and slave has stopped for some reason and there is a difference of 80gb of data. so I started to setup new slave . Since the data is changing and multiple databases dumping, copying and restoring…
-1
votes
1 answer

How to Mirror MariaDB schema into Mysql?

We are using MariaDB for our main service and Mysql on another for our ATM machines, I trying to fetch all the data and to have all the transactions available. I don't know if this is possible because Mysql and MariaDB are not the same... We also…
ikenas
  • 131
  • 3
-2
votes
1 answer

How to replicate domains from different forests

I have 2 domains each in a different forest with transitive trust... Now, I am asked to do replication between them. My question is.. is that possible? if so how can I do that? any clue? I've made replication between domains from the same forest…
CMinds
  • 1
-2
votes
1 answer

What's the best way to sync folders across 03 or more webservers?

I have 03 servers and I want to sync some folders across them. I'm using DRBD + OCFS2 for a year or so, but it doesn't support more than 02 servers right now. I read about GlusterFS and CEPH, but there are a lot of bad reviews about them related to…
-2
votes
2 answers

Is it possible to do mysql replication with one server in internet and another in a intranet?

I have a server in internet that must have all data synced (dont need to be in realtime) from a server from a intranet (obviously has internet connection). Is it possible? How about sync both sides, master-master? I havent tried yet because my…
-2
votes
2 answers

What replication should I use for my Sql Server

We have a dedicated server that will host our client's database for a web portal. To connect to this database, you need an ip address. I figured I'd try Merge Replication since I already have the snapshot Publication on the server done. When I…
ErocM
  • 226
  • 7
  • 23
-2
votes
1 answer

Replication Working in AD

I recently studied the concept of replication in Active directory. My doubt is, which one initiates the replication? For example, I had DC-1 and DC-2 server. I update the user object's name attribute from "Sam" to "John" in DC-1 server. I studied in…
-3
votes
1 answer

MySQL replication not working

I have been trying everything I could find and my servers are not replicating! Can someone look at my config files and offer some guidance? My,ini master on Windows: # Other default tuning values # MySQL Server Instance Configuration File #…
DMonty
  • 1
-3
votes
1 answer

Building a Windows Server 2008 R2 (DNS, DHCP, AD, etc...)

I'm looking forward to build my own Windows Server 2008 R2 machine for a company that is in the process of establishment. I have some questions regarding the Windows Server. I'm pretty new to it .. I need to be able to achieve the following…
1 2 3
69
70