How Ansible works
In Ansible, there are two categories of computers: the control node and managed nodes. The control node is a computer that runs Ansible. There must be at least one control node, although a backup control node may also exist. A managed node is any device being managed by the control node.
Ansible works by connecting to nodes (clients, servers, or whatever you're configuring) on a network, and then sending a small program called an Ansible module to that node. Ansible executes these modules over SSH and removes them when finished. The only requirement for this interaction is that your Ansible control node has login access to the managed nodes. SSH keys are the most common way to provide access, but other forms of authentication are also supported.
In Ansible gibt es zwei Kategorien von Computern: den Steuerknoten und die verwalteten Knoten. Der Steuerknoten ist ein Computer, auf dem Ansible ausgeführt wird. Es muss mindestens ein Steuerknoten vorhanden sein, es kann jedoch auch ein Sicherungssteuerknoten vorhanden sein. Ein verwalteter Knoten ist jedes Gerät, das vom Steuerknoten verwaltet wird.
Ansible stellt eine Verbindung zu Knoten (Clients, Servern oder was auch immer Sie konfigurieren) in einem Netzwerk her und sendet dann ein kleines Programm namens Ansible-Modul an diesen Knoten. Ansible führt diese Module über SSH aus und entfernt sie, wenn sie fertig sind. Die einzige Voraussetzung für diese Interaktion ist, dass Ihr Ansible-Steuerknoten Anmeldezugriff auf die verwalteten Knoten hat. SSH-Schlüssel sind die gebräuchlichste Methode, um Zugriff zu gewähren. Es werden jedoch auch andere Authentifizierungsformen unterstützt.
في أنسبل، هناك فئتان من أجهزة الكمبيوتر: عقدة التحكم والعقد المدارة. عقدة التحكم هي كمبيوتر يقوم بتشغيل أنسبل. يجب أن تكون هناك عقدة تحكم واحدة على الأقل ، على الرغم من أنه قد توجد أيضًا عقدة تحكم احتياطية. العقدة المُدارة هي أي جهاز تتم إدارته بواسطة عقدة التحكم.يعمل أنسبل عن طريق الاتصال بالعقد (العملاء أو الخوادم أو أي شيء تقوم بتكوينه) على شبكة ، ثم إرسال برنامج صغير يسمى وحدة أنسبل إلى تلك العقدة. أنسيبل ينفذ هذه الوحدات على إس إس أتش ويزيلها عند الانتهاء. الشرط الوحيد لهذا التفاعل هو أن يكون لعقدة التحكم أنسبل حق الوصول إلى العقد المُدارة. تعد مفاتيح إس إس أتش هي الطريقة الأكثر شيوعًا لتوفير الوصول ، ولكن يتم أيضًا دعم أشكال أخرى من المصادقة
Author