Register Domain With Route 53  [draft]

Here’s a step-by-step guide on how to register a domain with Amazon Route 53 Sign in to AWS Console: Go to the AWS Management Console. Sign in with your AWS account credentials. Open Route 53: In the AWS Management Console, navigate to the “Services” dropdown. Under “Networking & Content Delivery,” select “Route 53.” Choose “Domain Registration”: In the Route 53 dashboard, select “Domain Registration” from the left-hand navigation pane. Click “Register Domain”:...

July 16, 2022 · Marcin M

Ansible  [draft]

First steps I made to start my adventure with Ansible Please go to the official web for instructions on installing Ansible - this is the best way. Installing and upgrading Ansible Ansible’s installation and version ansible --version Create Inventory #inventory file 192.168.1.171 192.168.1.172 192.168.1.173 Create ansible.cfg #ansible.cfg [defaults] inventory = inventory private_key_file = ~/.ssh/ansible/ remote_user = ubuntu Test Ansible is working ansible all --key-file ~/.ssh/ansible -i inventory -m ping After creating config....

July 14, 2022 · Marcin M

Generate an SSH Key for Ansible  [draft]

Generating and Using an SSH Key for Secure Server Access To generate a strong SSH key, run the following command: ssh-keygen -t ed25519 -C "ansible" You will be prompted to choose a folder and name for the SSH key: Generating public/private ed25519 key pair. Enter file in which to save the key (/home/marcin/.ssh/id_ed25519): /home/marcin/.ssh/ansible/ansible Next, copy the SSH key to the server(s) you want to access. However, before you do so, you must first log in to the server(s) using your name and password:...

July 14, 2022 · Marcin M

Mount Windows Shares Folder Permanently  [draft]

This document describes how to mount CIFS shares permanently. The shares might be hosted on a Windows computer/server, or on a Linux/UNIX server running Samba. ...

July 12, 2022 · Marcin M

Can't Access Oracle Cloud Always Free Compute Http Port 80

Can’t access Oracle Cloud Always Free Compute http port configure ingress route for port 80 curl localhost should bring back webpage in text format, however fails over internet. sudo iptables -I INPUT 6 -m state --state NEW -p tcp --dport 80 -j ACCEPT sudo netfilter-persistent save test your web page over internet

June 25, 2022 · Marcin M