There are many occasions when we need to run a bash script every time a Linux server boots. This can be particularly helpful for tasks such as mounting storage, starting services, and other essential Linux configurations. Here are the steps to set up bash script execution on server boot using Debian 12. Step 1 :… Continue reading
Posts in "dev"
Install RabbitMQ On Azure Debian 11
The script from the RabbitMQ official documentation is a good reference from any Debian 11 distro, especially for Azure which only have Debian 11 as the latest to install RabbitMQ Based on the link and ensuring compatibility with Debian 11 (“bullseye”), here is the revised script incorporating the necessary changes Run the following command to… Continue reading
Mount Azure Blob Storage On Debian 11 or Debian 12 Using BlobFuse
Linux versions of many Microsoft software products are supported and are available through the “Linux Software Repository for Microsoft Products” at https://packages.microsoft.com. Unfortunately, the BlobFuse installation via the apt package repository for Microsoft products is not available for Debian. It’s unclear why this significant omission occurred—leaving Debian out of the loop. Below are steps tailored… Continue reading
How to Install .NET Core 3.1 Runtime and SDK On Debian 11
This tutorial explained how to install .net core on Debian 11 Linux system. Login to your debain system with sudo privileged account. Open a terminal, update the apt cache and install below required packages 1.Update Debian 11 ‘Bullseye’ 2.Enable Microsoft PPA First, you need to enable Microsoft packages repository on your Debian system. The Microsoft official team… Continue reading
How to Set IPv4 Address for Intranet
IPv4 is controlled standard where IANA is one defining address ranges and assigns IP numbers to user (companies). IANA defines 3 private ranges used only on Intranet or private use, not used on Internet. Ranges are called classes A, B and C and they are: Home routers usually come preprogrammed to 192.168.0.x or 192.168.1.x Reference
Git, ‘The Stupid Content Tracker’
Bagi kebanyakan orang, keberhasilan ‘mengubah dunia’ tidak terjadi dua kali. Berbeda dengan Linux Torvalds, tidak diragukan lagi setelah berhasil mengembangkan kernel dari tahun 1991, keberhasilan keduanya adalah mengembangkan git dari tahun 2005. The name “git” was given by Linus Torvalds when he wrote the veryfirst version. He described the tool as “the stupid content tracker”and… Continue reading
Technology Stack (Server) ‘Kompas TTS’
Kurang lebih enam (6) bulan ini beberapa rekan dari berbagai unit (Desain, Teknologi, Inovasi, Produksi Iklan, Marketing Communication dan juga partner kami, Radyalabs) berusaha mengembangkan atau sebut saja mem-porting permainan Teka-Teki Silang Kompas (Kompas TTS) dari format kertas koran menjadi aplikasi mobile di smartphone. Berawal dari Smartphone dengan sistem operasi Windows Phone (Thanks to Nokia… Continue reading
SAP BW: Logistics (LIS) Setup Tables for Full and Delta Extraction
Ok, we got a disaster in SAP BW NW 7 machine, part of the physical memory just suddenly break! Yeah! and The ‘fun’ part , the malfunction occures on heavy extraction of data from SAP R3 / IS-M Production Server. It break on pararel processing , although we can identify the malfunction Object, the team… Continue reading
Protect Apache with .HTACCESS files
If you’re using Apache web server, this is the first and basic step to protect your web application using .htaccess file. create and put the .htaccess file in root folder of your application and write the code;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# Protect the files that important and contain sensitive information such as database username and password <files my-database-files.php> Order allow,deny Deny from all </files> # Protect .htaccess files it self <files .htaccess> Order allow,deny Deny from all </files> # protect development folder and files <files my-dev-files.php> Order deny,allow Allow from xx.xx.xx.xx Deny from all </files> # Rules to disable directory browsing Options -Indexes |
Sublime Text Code Editor!
Right now, I’m using various developer tools to manage application code. Before this month, developer tools such as Visual Studio, SQL Server Management Studio, HeidiSQL and Notepad++ are the daily tools for developing application. Well, i think the application world is evolving in rapid ways, the horizon of an application development suddenly becoming more vast… Continue reading