简体   繁体   中英

How to join AWS EC2 ubuntu instance to simple directory

in AWS I am trying to join ubuntu EC2 instance to AWS simple directory. I used steps described here to manually join instance.

First i Connected to instance using PuTTY

In step 4 i executed the following command

$ sudo apt-get -y install sssd realmd krb5-user samba-common packagekit adcli

As mentioned in the article, i was presented with several pop-up configuration screens and i left the fields in these screens blank.

then i tried to join the instance to the directory with the following command.

$ sudo realm join -U user@INTERNAL.MYCOMPANY.COM internal.mycompany.com --verbose

Since instance has Ubuntu 16.04, i entered the domain name portion of the username with all capital letters

However i am getting the No such realm found error

在此处输入图片说明

I am not linux expert, infact this is the first time i am using linux. All other instances in our network are windows.

Can anyone guide me what could be the issue here?

found it

To configure an EC2 instance running Linux to use static DNS server entries, use a text editor such as vim to edit the file /etc/dhcp/dhclient.conf and add the following line to the end of the file:

supersede domain-name-servers xxx.xxx.xxx.xxx, xxx.xxx.xxx.xxx;

Where xxx.xxx.xxx.xxx is the IP address of a DNS server that you want the instance to use

https://aws.amazon.com/premiumsupport/knowledge-center/ec2-static-dns-ubuntu-debian/

and then try to join using

$ sudo realm join -U user@INTERNAL.MYCOMPANY.COM internal.mycompany.com --verbose

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM