CLI Guidelines and fast Support

Posted on Sun 09 June 2024 in Technology • Tagged with Linux, AWS, Awscli, Sysadmin, Git

AWS - Amazon Web Services

AWSCLI V2 via Curl (Linux Command Line)

curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install

Please look for this page to more info

AWSCLI V2 Official Installation Page

Working with EC2 Instances

Launching EC2 Instance via aws cli …


Continue reading

Simple Scripts!

Posted on Tue 23 July 2019 in Technology • Tagged with Linux, shell-script

Backup using shell script (this example weblogic domain)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#!/bin/bash -e
set -euf -o pipefail
echo "Starting Backup"
DATE=`date +%Y-%m-%d-%H.%M.$$`
echo "Starting Backup, except *.tar extensions"
tar -zcvf blog-"${DATE …

Continue reading