Skip to content

Getting started

What web hosting actually is

Files, a database, and a domain have to point at the same machine.

Updated Aug 29, 20263 min read17 reads
What web hosting actually is
Shared, VPS, and dedicated are three different kinds of server.

Web hosting is renting a computer that stays on, has a public IP address, and serves your website over HTTP. Your files live on that computer. If the site is WordPress, the database usually lives there too. Email can live there or at Google or Microsoft. cPanel, WordPress, and webmail are programs on the server — they are not kinds of hosting.

Files, the database, and the domain

A live site is three pieces that have to agree. Files sit in a document root; on cPanel that is usually public_html. MariaDB holds posts, users, and carts. DNS points the domain at the server’s IP. If you copy files here but leave nameservers at the old host, visitors still see the old site. If you change nameservers before the files are here, they see an empty account.

You can check which machine the world is actually hitting:

bash
curl -sI https://example.com | head -n 15

Look at the Server header and the status code. On LogicWeb shared and cPanel plans you should see LiteSpeed and a 200, or a redirect you meant. If the headers still name the old company, public DNS has not moved. How nameservers work is the rest of that check.

Shared, VPS, and dedicated

Shared hosting here is an account on a CloudLinux server with LiteSpeed. You log into cPanel. You do not get root, and other accounts share the machine behind LVE resource limits. That is the right place for most WordPress sites, ordinary shops, and brochure sites.

A VPS is a KVM virtual machine. You get root, your own IP, and you pick the OS. Take one when you need Docker, a custom daemon, or you already hit LVE during real checkout traffic — not during a bot flood on xmlrpc.

Dedicated is the physical server. You get IPMI for the console and you are not sharing a chassis. A cached WordPress site on LiteSpeed shared often outperforms an uncached VPS that nobody patches. Buy dedicated when you want the hardware and IPMI, not because a forum said “real sites need metal.”

How to choose

Write down the app, whether the busy pages are cached, and where mail lives. Start on cPanel hosting unless you already know you need root. Moving to a VPS later is a migration, not a one-way door. You can also move down if you overbought.

Share

Send this article

Need someone else to do this? Send them the link — the commands are in the article.

Was this article helpful?

Be the first to rate this article.