Move Elastic IP from one AWS Account to Another
AWS Elastic IP is a static, public IPv4 address that you can allocate and associate with your AWS resources, such as Amazon…
AWS Elastic IP is a static, public IPv4 address that you can allocate and associate with your AWS resources, such as Amazon…
Oracle Cloud Ubuntu virtual machines are not compatible with UFW firewall. This is because oracle cloud needs some iptables rules to communicate…
When you delete a Google Cloud Project (GCP), Google will shut down the project, and keep it for 30 days. If you…
Amazon lightsail instances do not allow ssh root access by default. You have to log in as user “ubuntu” or “ec2-user”, then…
I have an old Bitnami WordPress server on the Amazon Lightsail server. Bitnami does not support upgrading the PHP version. The recommended…
By default Amazon EC2 only allow port 22 (SSH) on Linux servers and port 3389 (RDP) on Windows Instances. All other ports…
To export DNS Records for a domain, you can use AWS CLI. First, you need to make an Access key to use…
When trying to log in to Amazon Lightsail instance, I got the error This lightsail refused to connect error happens because when…
Amazon S3 is a cheap object storage service from Amazon AWS. You can use aws-cli to copy files between S3 buckets. To…
To see the disk usage of an Amazon S3 bucket, do the following 1) Click on the bucket name 2) Click on…
To scale a deploymenet in Kubernetes using kubectl, run kubectl scale deployment DEPLOYMENT_NAME –replicas=2 Example kubectl scale deployment my-frontend –replicas=2 See Kubernetes
Before you can run kubectl commands on Google Kubernetes Engine, you need to get credentials, this is done with command gcloud container…