Java mit JSTL anwenden
GenericPrincipal principal = (GenericPrincipal) request.getUserPrincipal(); String loginName = principal.getName(); pageContext.setAttribute("loginName", loginName); String[] loginRoles = principal.getRoles(); pageContext.setAttribute("loginRoles", loginRoles);
Autohotkey Send KeyStroke
Zwischenablage mit autohotkey und send keystrokes als Tastatureingabe senden. #Requires AutoHotkey v2.0 ^!v:: { SendText A_Clipboard }
Kennwörter im MySQL 8
Kennwörter werden im MySQL 8 über Plugins geprüft. Benutzer löschen und mit "with" wieder hinzufügen. drop USER 'bob'@'%'; flush privileges; create user 'bob'@'%' identified with mysql_native_password by 'geheim' flush privileges;
HTML Sippets
Meter Datalist (Abcd, Efgh) Ordered list starts at 7 One Two Three Range File + accept Fieldset Java JavaScript Go Download ein PDF klick mich ein Text Pages opened with…
Linux/Java OutOfMemmory
max user processes You are reaching the threads limit, for the user, process, or an overall limit I had the same problem in a centOS/Red Hat machine. You are reaching…
Zertifikat über Keystore nutzen
echo |\ openssl s_client -connect ${REMHOST}:${REMPORT} 2>&1 |\ sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' \ > /certificate.cer weiterlesen... keytool -keystore /lib/security/cacerts \ -import -alias certificate \ -file /certificate.cer // Path to…
Linux Gruppen
usermod -a -G admgrp bob chgrp -R admgrp /tmp/abcd chmod -R g+ws /tmp/abcd setfacl -R -b -k -d -m g:admgrp:rwx --mask /tmp/abcd getfacl /tmp/abcd diff -q /home/abc/ /home/def/ als "root"…
- Gehe zur vorherigen Seite
- 1
- …
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- …
- 82
- Gehe zur nächsten Seite