openssl p12 to pem
openssl pkcs12 -in keyStore.pfx -out keyStore.pem -nodes
Here is what the above code is Doing:
1. Generate a private key
2. Generate a CSR
3. Sign the CSR with the private key
4. Convert the PFX to PEM
openssl pkcs12 -in keyStore.pfx -out keyStore.pem -nodes
Here is what the above code is Doing:
1. Generate a private key
2. Generate a CSR
3. Sign the CSR with the private key
4. Convert the PFX to PEM
curl –silent “https://api.github.com/repos/USER/REPO/releases/latest” | # Get latest release from GitHub api grep ‘”tag_name”:’ | # Get tag line sed -E ‘s/.*”([^”]+)”.*/\1/’ | xargs -I {} curl -sOL “https://github.com/USER/REPO/archive/”{}’.tar.gz’ Here is what the above code is Doing: 1. Get the latest release from the GitHub API 2. Get the tag line 3. Get the name of…
git checkout -f Here is what the above code is Doing: 1. git fetch origin – This will fetch all the branches from the remote repository. 2. git checkout -f – This will checkout the branch that you want to work on.
conda install -c conda-forge tensorflow Here is what the above code is Doing: 1. Create a new environment called “tensorflow” 2. Install Python 3.5 3. Install Jupyter Notebook 4. Install TensorFlow
git config –global –unset https.proxy git config –global –unset http.proxy Here is what the above code is Doing: 1. It’s setting the proxy for the git protocol. 2. It’s setting the proxy for the http protocol. 3. It’s setting the proxy for the https protocol. 4. It’s unsetting the proxy for the git protocol. 5….
#insert those command in ~/.bashrc file export PYTHONPATH=$SPARK_HOME/python:$SPARK_HOME/python/lib/py4j-0.10.8.1-src.zip:$PYTHONPATH export PATH=$SPARK_HOME/bin:$SPARK_HOME/python:$PATH Here is what the above code is Doing: 1. It is setting the PYTHONPATH variable to the location of the Spark Python libraries. 2. It is setting the PATH variable to the location of the Spark binaries.
This is possibly unrelated directly to the question; but one mistake I just made myself, and I see in the OP, is the URL specification ssh://user@server:/GitRepos/myproject.git – namely, you have both a colon :, and a forward slash / after it signifying an absolute path. I then found Git clone, ssh: Could not resolve hostname…