Start here — only five things
| # | Remember | What it means |
|---|---|---|
| 1 | Your name | Your LightningArrows username (example: you) |
| 2 | Your address | https://you.lightningarrows.com/ — your server’s home |
| 3 | Your control room | My Servers — log in, see status, open links |
| 4 | Wait for Active | Pending = still building. Active = open your address |
| 5 | Same name as community | https://theamericans.us/members/you/ — The Americans profile |
That’s the whole product:
we build → your name is the URL → My Servers is the remote.
Two more comfort lines
- You don’t install software or set DNS — we did that.
- Stuck? Use Request support on My Servers · [email protected] · a 24/7 member community for live help is coming.
What we just created (in plain words)
You bought a cloud computer in the sky.
LightningArrows:
- Builds the server for you (example: Ubuntu Linux).
- Puts it at an address that matches your name.
- Gives you a control room to check status.
| Door | What it is | Example |
|---|---|---|
| Your stack | Your server’s home on the web | https://you.lightningarrows.com/ |
| Control room | See status, open links (login) | My Servers |
| Community profile | Same name on The Americans | https://theamericans.us/members/you/ |
Rule: wait until status is Active, then open your stack.
Until then, we are still building.
How to access it
1. LightningArrows (easiest)
- Log in → My Servers.
- When status is Active, click Open stack.
- That page is your address:
https://you.lightningarrows.com/.
You will also get (by email / panel when ready):
- IP address (numbers like
45.x.x.x) - Username (often
rooton a fresh Ubuntu server) - Password (save it somewhere private — we won’t post it on a public page)
2. Company recommendation: files with FileZilla (free)
We recommend FileZilla to upload and download files — simple drag and drop.
- Download free: https://filezilla-project.org/download.php?type=client
- Open FileZilla → File → Site Manager → New site
- Fill in:
| Field | What to type |
|---|---|
| Protocol | SFTP |
| Host | your IP from My Servers |
| Port | 22 |
| Logon type | Normal |
| User | root (unless we told you another name) |
| Password | the password we sent you |
- Connect → drag files left (your computer) ↔ right (your server).
Help: FileZilla wiki — using SFTP
3. Company recommendation: code + terminal with Visual Studio Code (free)
We recommend VS Code so you can edit files and open a terminal to the server in one place.
- Download free: https://code.visualstudio.com/download
- Install the extension Remote - SSH
(one-click marketplace) - In VS Code: F1 (or Ctrl/Cmd+Shift+P) → type Remote-SSH: Connect to Host…
- Enter:
root@YOUR_IP
- Choose Linux if asked → enter your password when prompted.
- Open a folder on the server (for example
/rootor/var/www). - Open the Terminal menu → New Terminal — that terminal is on your server.
Microsoft guide (clear pictures):
VS Code Remote SSH
Demo: Ubuntu — first commands (safe & simple)
Your example server runs Ubuntu. In the VS Code terminal (or any SSH app), try:
# Who am I and where am I?
whoami
pwd
# Update package lists (Ubuntu’s app store index)
sudo apt update
# Upgrade installed packages (optional, can take a few minutes)
sudo apt upgrade -y
# Install a simple web server (demo)
sudo apt install -y nginx
# Check it is running
systemctl status nginx --no-pager
Then in a browser, open http://YOUR_IP — you should see a default Nginx page.
Tips
- Type carefully; Linux is picky about spelling.
sudomeans “do this as admin.”- Don’t share your password or IP publicly.
More Ubuntu basics (friendly):
Ubuntu Server Guide — getting started
Ubuntu “Using the terminal”
Helpful resources (easy first)
| Need | Link |
|---|---|
| Your servers panel | /my-servers |
| Order / reconfigure | /cloud-servers |
| FileZilla free download | filezilla-project.org |
| VS Code free download | code.visualstudio.com |
| VS Code + SSH | code.visualstudio.com/docs/remote/ssh |
| Ubuntu docs | ubuntu.com/server/docs |
| SSH explained simply | SSH Academy — What is SSH? |
Community help (coming)
We are building a live community for LightningArrows members — help with servers, sites, and “what do I type next?” — aimed to be available 24/7.
Until that door opens fully, you can still:
- Use Request support on My Servers
- Contact us via the site Contact
- Email [email protected]
Remember (the whole lesson)
- Pay → we build.
- Your name is your address.
- My Servers is your remote.
- FileZilla = files. VS Code = code + terminal.
- Ubuntu example:
sudo apt updatethen install what you need. - Community help is on the way — keep it short, keep going, you’re not alone.
— LightningArrows Inc.