sssd configuraton for ldap login

This commit is contained in:
Tuncay ÇOLAK 2019-06-11 14:32:05 +03:00
parent 32f88e9fed
commit de361cf2e2
3 changed files with 6 additions and 6 deletions

View file

@ -159,7 +159,7 @@ class AhenkDaemon(BaseDaemon):
# self.registration_failed() # self.registration_failed()
if registration.is_registered() is False: if registration.is_registered() is False:
print("Registation attemp") print("Registration attemp")
max_attempt_number -= 1 max_attempt_number -= 1
self.logger.debug('Ahenk is not registered. Attempting for registration') self.logger.debug('Ahenk is not registered. Attempting for registration')
registration.registration_request(self.register_hostname,self.register_user_name,self.register_user_password) registration.registration_request(self.register_hostname,self.register_user_name,self.register_user_password)
@ -260,7 +260,7 @@ class AhenkDaemon(BaseDaemon):
conf_manager.set('MACHINE', 'user_disabled', '1') conf_manager.set('MACHINE', 'user_disabled', '1')
with open('/etc/ahenk/ahenk.conf', 'w') as configfile: with open('/etc/ahenk/ahenk.conf', 'w') as configfile:
self.logger.info('oepning config file ') self.logger.info('opening config file ')
conf_manager.write(configfile) conf_manager.write(configfile)
user_disabled = conf_manager.get("MACHINE", "user_disabled") user_disabled = conf_manager.get("MACHINE", "user_disabled")

View file

@ -156,7 +156,7 @@ class ExecuteSSSDAuthentication:
self.logger.info("lightdm.conf has been configured.") self.logger.info("lightdm.conf has been configured.")
self.util.execute("systemctl restart nscd.service") self.util.execute("systemctl restart nscd.service")
self.util.execute("pam-auth-update --force") # self.util.execute("pam-auth-update --force")
self.logger.info("LDAP Login operation has been completed.") self.logger.info("LDAP Login operation has been completed.")
self.logger.info("LDAP Login işlemi başarı ile sağlandı.") self.logger.info("LDAP Login işlemi başarı ile sağlandı.")

View file

@ -128,9 +128,9 @@ class Registration:
#admin_password = self.user_password # same user get from server #admin_password = self.user_password # same user get from server
admin_password = self.db_service.select_one_result('registration', 'password', ' registered=1') admin_password = self.db_service.select_one_result('registration', 'password', ' registered=1')
if server_address != '' and dn != '' and version != '' and admin_dn != '' and admin_password != '': if server_address != '' and dn != '' and version != '' and admin_dn != '' and admin_password != '':
self.logger.info("PAM LDAP configuration process starting....") self.logger.info("SSSD configuration process starting....")
self.ldap_login.login(server_address,dn,version,admin_dn,admin_password) self.ldap_login.authenticate(server_address, dn, admin_dn, admin_password)
self.logger.info("PAM LDAP configuration process starting....") self.logger.info("SSSD configuration process starting....")
else : else :
raise Exception( raise Exception(
'LDAP Ayarları yapılırken hata oluştu. Lütfen ağ bağlantınızı kontrol ediniz. Deponuzun güncel olduğundan emin olunuz.') 'LDAP Ayarları yapılırken hata oluştu. Lütfen ağ bağlantınızı kontrol ediniz. Deponuzun güncel olduğundan emin olunuz.')