Hana Kullanıcısının Şifre Süresini Never Expire Yapmak

Hana Database üzerinde açmış olduğumuz kullanıcıların, şifre süresi normal şartlarda belli süreler içerisinde değiştirmesi gerekir. Bazı uygulamalarda bu şifrenin güncellenmesi uygulama bazlı kesintilere neden olacağı için istenmemektedir. Böyle bir durumla karşılaştığınızda aşağıdaki komut ile kullanıcının şifre geçerliliğini sonsuz yapabiliyorsunuz. Kolay gelsin… Kullanılacak sql komut: ALTER USER “user_name” DISABLE PASSWORD LIFETIME Bu komutu çalıştırmak için Hana […]

Read More →
SAP J2EE_admin Şifresinin Resetlenmesi

It may sometimes happen that a user enters the wrong password a number of times (by default, 3) and if that user is the administrator, then the administrator user is locked. This prevents all sorts of things happening. To unlock the administator, use the following process You need to use the Config Tool and the […]

Read More →
SSL .pfx Dosyasınında Sertifika Ayrıştırma

Pfx dosyadan key ve sertifikayı ayırmak için openssl ile aşağıdaki komutları kullanabilirsiniz. Key dosyasını dışarı almak: openssl pkcs12 -in [yourfile.pfx] -nocerts -out [drlive.key] Sertifika dosyasını export etme: openssl pkcs12 -in [yourfile.pfx] -clcerts -nokeys -out [drlive.crt] Bazı sistemlerde key dosyasını şifreli olarak kabul etmez o gibi durumlarda key dosyasını decypt etmek gerekir Bunun için aşağıdaki komutu […]

Read More →