--- FIX: Port Already in Use (EADDRINUSE)address already in use ::3000 SOLUTION --> Kill the process on that port: //==== OPTION A ====== gloablly install ( not in project package.json npm install -g kill-port and then -->> kill-port 3000 // use your port //===== OPTION B ======= --- Windows --- netstat -ano | findstr :3000 taskkill /PID 17780 /F --- Linux / macOS --- lsof -i :3000 kill -9 17780 //Note Use your PID instead of 17780 ==============END ==========
/============================================================================================================================================= ANother way setting up phpMyAdmin on Ubuntu Server 22.04. Let's go step by step to get phpMyAdmin working correctly for you: Download phpMyAdmin : First, ensure that you have phpMyAdmin installed on your server. You can download it using the following command: bash Copy code sudo apt update sudo apt install phpmyadmin During the installation, you will be asked to choose a web server. Select apache2 using the arrow keys and press Enter. Now after this the most important work is to set it on URL for example on server's root URL or IP if you have already deployed any python or node project and you want to access phpmyadmin outsite of that Document Root then you have to use Allias for example your server url is 195.35.23.26 and you want to access it on http://195.35.23.26/phpmyadmin/ then you have to make changes in your default...