BBobinthuchoang.hashnode.dev·Oct 25, 2022 · 1 min readInstall Oh My ZshInstall Zsh and OhMyZsh sudo apt-get update sudo apt-get install zsh sudo curl -L http://install.ohmyz.sh | sh Install plugin zsh-autosuggestions git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zs...00
BBobinthuchoang.hashnode.dev·May 30, 2021 · 1 min readCopy all files (include hidden files) to another folder in Ubuntumkdir /home/<new_user> cp -r /etc/skel/. /home/<new_user> This will copy all files/folder recursively from /etc/skel in to the already existing folder created on the first line.00
BBobinthuchoang.hashnode.dev·May 18, 2021 · 3 min readHow to configure SAML2 in weblogic 10.3You need to have 2 weblogic domains which are already setup SSL. If not, please follow this article to do it How to configure SSL certificate on WebLogic server Let's assume that one domain will work as IDP (Identity Provider) and the another will ...00
BBobinthuchoang.hashnode.dev·Apr 28, 2021 · 2 min readWeblogic - How to configure SSL certificate on WebLogic serverIn this section, we walk through how to configure SSL certificate on WebLogic servers. Pre-requisite: Identity and Trust Keystore Certificates Passphrase of Identity and Trust Keystore Note: A root certificate is required for a production installati...00
BBobinthuchoang.hashnode.dev·Apr 28, 2021 · 1 min readWeblogic - How to create a Self-Signed Keystore and Truststore SSL Certificates?In this section, we walk through on creating Keystore and truststore SSL certificates using Java keytool utility. JDK must be installed on the system. The keytool utility is available in JAVA_HOME\bin directory Create a directory to store the certifi...00