This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "edit this file before you execute it!!" | |
echo "make sure keytool and openssl commands are in PATH" | |
read -p "Contiune?" ANS | |
read -p "give me CN(CommonName, EX:www.xxx.com.tw): " CN | |
read -p "give me OU(OrganizationalUnit, EX:Information Center): " OU | |
read -p "give me O(Organization, EX: FBI): " O | |
read -p "give me L(Location, EX:Taipei): " L | |
read -p "give me ST(StateOrProvinceName, EX:Taipei): " ST | |
read -p "give me C(Country,EX:TW): " C |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!bin/bash | |
# docker pull cassandra | |
docker pull cassandra:latest | |
###################### | |
# docker-compose.yml # | |
###################### | |
# version: "3.8" | |
# services: | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.8" | |
services: | |
elasticsearch: | |
image: elasticsearch:7.8.1 | |
ports: | |
- "9200:9200" | |
- "9300:9300" | |
environment: | |
discovery.type: "single-node" |