Setting Up Docker and Docker Compose on Debian 12 Rumi, December 27, 2024 Installing Docker on Debian 12 Before installing Docker, ensure your Debian system is up-to-date with the following command: sudo apt update && sudo apt upgrade -y Once your system is updated, install the necessary packages to allow apt to use a repository over HTTPS: sudo apt install apt-transport-https ca-certificates curl… Continue Reading
Gitlab SMTP settings with Zimbra Mail Rumi, December 22, 2024December 22, 2024 If you would rather send application email via an SMTP server instead of via Sendmail or Postfix, add the following configuration information to /etc/gitlab/gitlab.rb and run gitlab-ctl reconfigure. gitlab_rails[‘smtp_enable’] = true gitlab_rails[‘smtp_address’] = ‘mail.siteage.net’ gitlab_rails[‘smtp_port’] = 465 gitlab_rails[‘smtp_user_name’] = ‘gitlab@domain.com’ gitlab_rails[‘smtp_password’] = ‘password’ gitlab_rails[‘smtp_authentication’] = ‘login’ gitlab_rails[‘smtp_enable_starttls_auto’] = false gitlab_rails[‘gitlab_email_from’]… Continue Reading
Nginx directory list allow Rumi, December 19, 2024 location /somedirectory/ { autoindex on; autoindex_exact_size off; autoindex_format html; autoindex_localtime on; } Continue Reading
Fixing Ubuntu 22 SSH connection problem Rumi, December 18, 2024 Enable this parameter KbdInteractiveAuthentication yes in /etc/ssh/sshd_conf file ubuntu in 22.04 LTS and restart the sshd services it will work Continue Reading
Force User to Change Password at Next Login in Linux Rumi, December 7, 2024 To force a user to change his/her password, first of all the password must have expired and to cause a user’s password to expire, you can use the passwd command, which is used to change a user’s password by specifying the -e or –expire switch along with username as shown. # passwd –expire ravi Next… Continue Reading
Install Proxmox 8 on Debian 12 Rumi, December 7, 2024 Install a standard Debian Bookworm, for details consider the Debian installation guide, and configure a static IP. Note: The Debian installer performs network configuration by IPv6 autoconfiguration and DHCP by default, if available. To force manual network configuration in the UEFI installer, press E and add netcfg/disable_autoconfig=true to the Linux command line. For the… Continue Reading
Install Nodejs on Ubuntu 20 Rumi, December 7, 2024 Installing Node.js and npm from NodeSource NodeSource is a company focused on providing enterprise-grade Node support. It maintains an APT repository containing multiple Node.js versions. You can use this repository to install any version of Node.js you need. The first step is to install the dependencies necessary to add a new… Continue Reading
Running react js on virtualmin server Rumi, November 21, 2024November 22, 2024 Just make sure, you have node, npm andp m2 installed in the server as root administrator. Now, you can run the rest as a virtualmin user in the virtualmin shell account. npm install npm run build npm run dev pm2 start npm — run dev Step-3 will let you know… Continue Reading
ক্লাউড হোস্টিং ও ডেটা সেন্টারে দেশীয় উদ্যোগ Rumi, November 9, 2024 বর্তমানে অনলাইনের এই যুগে সবকিছু আমরা ক্লাউডে হোস্ট করে থাকি। এর আগে হোস্টিংয়ের জন্য সাধারণত সার্ভার ভাড়া নিয়ে সেখানেই হোস্ট করা হতো। সময়ের সঙ্গে সঙ্গে অনলাইন হোস্টিংয়ে অনেক পরিবর্তন ও পরিবর্ধনের মধ্য দিয়ে বর্তমানে ক্লাউডের বিকাশ ঘটে। আইটিতে শীর্ষস্থানীয় প্রতিষ্ঠানগুলো যেমন– মাইক্রোসফট, গুগল, অ্যামাজন, ওরাকল তাদের নিজস্ব ক্লাউড প্ল্যাটফর্ম গড়ে… Continue Reading
Disable NetworkManager in Rocky Linux 8 Rumi, November 8, 2024 To disable NetworkManager on Rocky Linux 8, we need to install the network-scripts package which provides legacy support to the network service, yum install network-scripts Enable the service to start onboot, systemctl enable network Next, we add NM_Controlled=no to the interface config file, nano /etc/sysconfig/network-scripts/ifcfg-<interface> Replace with the interface name… Continue Reading