Add list of IP’s to storage Account Add list of IP’s to SQL Server Firewall
Nginx and PHP-FPM Setup
Setting up an Nginx web server with PHP-FPM can be a bit daunting for those who are new to web server administration. In this blog post, I will provide a step-by-step guide on how to set up an Nginx web server with PHP-FPM on a …
Monitoring Linux VM Resources
As a Linux administrator, it is important to monitor the resources of your virtual machines (VMs) to ensure they are running efficiently and effectively. In this blog post, we will go over some commonly used Linux commands for monitoring VM resources, along with examples of …
Setup SQL Server on Linux VM
### Troubleshooting References #### connection Troubleshootinghttps://learn.microsoft.com/en-us/sql/linux/sql-server-linux-troubleshooting-guide?view=sql-server-linux-ver15#connection #### Restore Database https://learn.microsoft.com/en-us/sql/linux/sql-server-linux-backup-and-restore-database?view=sql-server-ver16 https://learn.microsoft.com/en-us/sql/relational-databases/tutorial-sql-server-backup-and-restore-to-azure-blob-storage-service?view=sql-server-ver16&tabs=SSMS wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add – sudo add-apt-repository “$(wget -qO- https://packages.microsoft.com/config/ubuntu/18.04/mssql-server-2019.list)” sudo apt-get update sudo apt-get install -y mssql-server sudo /opt/mssql/bin/mssql-conf setup ### Command line Tools sudo apt install curl curl https://packages.microsoft.com/keys/microsoft.asc | …