Member Avatar for Member #529773

Hello,

I had a few questions about Ubuntu 9.01 Server Edition.

1> How can I make my personal domain?
2> How do I make it point to specific whois or something to view details while a whois is done?
3> How do set up a website on the domain?
4> How do I put files on my website on the domain?

Help will be greatly appreciated.

Regards,
Akshit Soota

Dani AI

Generated

Building on 's helpful outline, the following is a compact, practical checklist that fills in the missing steps for : how to register a name, what WHOIS actually shows, how to host a site on an Ubuntu server, and how to upload files.

Registrar and WHOIS: pick a registrar that provides DNS management and WHOIS/privacy controls. Public WHOIS data (registrant, contacts, name servers) is managed by the registrar/registry—change it by editing the domain contact fields at the registrar or enabling privacy services. To display WHOIS output on a site or check it from the server, install a WHOIS client and run a query.

sudo apt-get update
sudo apt-get install whois
whois example.com

DNS and webserver basics (concrete actions): use the registrar’s DNS panel to create an A record for the domain pointing to the server’s public IP (and AAAA for IPv6 if needed). On the Ubuntu server install Apache, create a document root, and add a virtual host file.

sudo apt-get install apache2
sudo mkdir -p /var/www/example.com/public_html
sudo chown -R $USER:www-data /var/www/example.com/public_html

# example vhost (/etc/apache2/sites-available/example.com.conf)
<VirtualHost *:80>
    ServerName example.com
    ServerAlias www.example.com
    DocumentRoot /var/www/example.com/public_html
</VirtualHost>

sudo a2ensite example.com
sudo service apache2 reload

Uploading and troubleshooting: transfer site files with SFTP/SCP/rsync, then set ownership to the web user (www-data). Check DNS propagation with dig/nslookup, review logs in /var/log/apache2/, and confirm port 80/443 are reachable (router port-forwarding or VPS firewall). Expect DNS propagation delays (often a few hours, sometimes up to 24–48 hours). Note: Ubuntu 9.x is long out of support—upgrade to a maintained release for security, or at minimum lock down the server (firewall, minimal services). This expands on ’s pointers and clarifies the WHOIS and deployment steps raised by .

Recommended Answers

All 3 Replies

1. you need to register a domain, but this is not inside of ubuntu, you need to do this through a service.
2. to resolve the domain to your server, you then need to set up a name server.
3. setting up a website is done by using some kind of web server software (e.g. apache).
4. tied in with answer to q3.

I actually wrote a bit about this on my blog (you can get to it via my homepage).

Member Avatar for Member #529773

Thanks for your help.
A great question about Q1.
How and which service may I use?
Please help me as this is urgent!

1. you need to register a domain, but this is not inside of ubuntu, you need to do this through a service.
2. to resolve the domain to your server, you then need to set up a name server.
3. setting up a website is done by using some kind of web server software (e.g. apache).
4. tied in with answer to q3.

I actually wrote a bit about this on my blog (you can get to it via my homepage).

as i said, i wrote about this on my blog, I use the service at planetdomain.com

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.