DeveloperBreeze

Server Development Tutorials, Guides & Insights

Unlock 4+ expert-curated server tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your server skills on DeveloperBreeze.

How to Reset the MySQL Root Password Using DROP USER

Tutorial October 03, 2024
bash

After resetting the password and recreating the root user, you need to revert the changes made to the MySQL configuration.

   exit;

How to view free space on a Linux server

Code August 11, 2024
bash

Filesystem      Size  Used Avail Use% Mounted on
/dev/sda1        40G   25G   15G  63% /
udev            1.9G     0  1.9G   0% /dev
tmpfs           384M  1.2M  383M   1% /run
/dev/sda2       100G   50G   50G  50% /home
  • Specific Filesystem: To view the space for a specific filesystem, add its path at the end of the command, like so:

Finding the Top 10 Biggest Files on an Ubuntu Server

Tutorial August 11, 2024
bash

First, you'll need to open a terminal on your Ubuntu server. If you're accessing a remote server, you might use SSH to connect.

Navigate to the directory where you want to search for large files. If you want to search the entire file system, you can skip this step.

Simple WebSocket Server using 'ws' library

Code January 26, 2024
javascript

No preview available for this content.