• Skip to main content

Uly.me

cloud engineer

  • Home
  • About
  • Archives

domain

Uninstall IBM Tivoli System Automation

December 13, 2021

How to uninstall IBM Tivoli System Automation from Linux.

Check if domain is online.

lsrpdomain

lsrpdomain

Stop the domain.

stoprpdomain <domain>

stoprpdomain <domain>

Uninstall.

cd /opt/IBM/tsamp/sam/uninst/
./uninstallSAM

cd /opt/IBM/tsamp/sam/uninst/ ./uninstallSAM

Check the logs.

/tmp/uninstallSAM.<#>.log

/tmp/uninstallSAM.<#>.log

Filed Under: Linux Tagged With: domain, ibm, tivoli, uninstall

Check If Domain Joined

October 28, 2020

Here’s the command to check if instance is domain joined.

realm discover domain.com

realm discover domain.com

To check if AD user is working.

id user@ad.example.com

id user@ad.example.com

To check if AD group is working.

getent group ad-group

getent group ad-group

Filed Under: Linux Tagged With: check, domain, join, sssd, user

AWS Certificate List

June 3, 2020

Here’s how to get a list of certificates in AWS Certificate Manager.

aws acm list-certificates \
--profile default \
--region us-east-1 \
--output text \
--query 'CertificateSummaryList[*].{ARN:CertificateArn,Domain:DomainName}'

aws acm list-certificates \ --profile default \ --region us-east-1 \ --output text \ --query 'CertificateSummaryList[*].{ARN:CertificateArn,Domain:DomainName}'

Filed Under: Cloud Tagged With: acm, arn, aws, certificate, domain, list, manager

SSSD Leave Domain

April 30, 2020

Here’s how to unjoin or leave the domain via SSSD.

realm leave domain.com

realm leave domain.com

Filed Under: Linux Tagged With: domain, leave, realm, sssd

This Webpage is not Available

January 16, 2014

I stopped by Starbucks to hang out, sip coffee, and perform some housecleaning on my website. I fired up my MacBook Air and tried to access my website. Chrome barked at me saying, “This webpage is not available.” What! So, I opened up Terminal to see if I’m really connected to the WiFi network. Yes, I am. I can ping everything else, but my domain.

So, what’s happening? Is my site down? I logged into my VPS. The server is doing just fine. I did some more investigating. I realized that I can ping my IP address, but not the domain. That’s interesting. AT&T is currently the provider for the WiFI for Starbucks.

A few weeks ago, I saw a blurb on the news that Google will provide WiFi for Starbucks. As far as I know, that hasn’t happened yet, at least not at this Starbucks location. Google plans to roll out its WiFi services to Starbucks in the next few months. So, we are still months away from that coming into fruition.

Is AT&T blocking my domain? I have AT&T DSL at home. I can access my domain just fine. So, whoever is managing the AT&T WiFi, must be applying some kind of filtering to block certain domains from working.

Since I can still ping my IP Address, I decided to just edit my hosts file.

For Macs, the hosts file is located in /private/etc/hosts.

$ sudo nano /private/etc/hosts

$ sudo nano /private/etc/hosts

I added a host a new entry to resolve my domain to my server’s IP address.

127.0.0.1       localhost
255.255.255.255 broadcasthost
::1             localhost
173.255.251.194 uly.me

127.0.0.1       localhost 255.255.255.255 broadcasthost ::1             localhost 173.255.251.194 uly.me

I saved the new entry, and pinged my domain! It works! I opened up the browser to access my website. It works!

I’m glad I was able to find a workaround! However, I’m still perplexed as to why my domain is being blocked.

Filed Under: HTML Tagged With: at&t, domain, wifi

  • Home
  • About
  • Archives

Copyright © 2023