Author: Omkar Pandit

Here I showing the basic command for installing the Node JS on Linux instance Install node version manager (nvm) by typing the following at the command line curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash #We will use nvm to install Node.js because nvm can install multiple versions of Node.js and allow you to switch between them. curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash Activate nvm by typing the following at the command line. . ~/.nvm/nvm.sh Use nvm to install the latest version of Node.js by typing the following at the command line. nvm install node #check node version node –v

Read More

sudo apt update sudo apt upgrade Update Package Repository & Install MySQL sudo apt update sudo apt upgrade Enter: Y sudo apt install mysql-server Enter: Y mysql –version sudo mysql_secure_installation To remove anonymous users, enter Y and press enter. To prevent remote root login, enter Y and press enter. To remove the test database, enter Y and press enter. To reload the privilege tables, enter Y and press enter. sudo mysql mysql> CREATE USER ‘username’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘password’; mysql> GRANT ALL PRIVILEGES ON *.* TO ‘username’@’localhost’; mysql> FLUSH PRIVILEGES; mysql> ALTER USER ‘username’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘password’;…

Read More