aizu's Knowledge Base
    • Go to: aizu.my Homepage
    • Recent
    • Tags
    • Register
    • Login
    1. Home
    2. aizu
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 77
    • Posts 90
    • Best 0
    • Controversial 0
    • Groups 1

    aizu

    @aizu

    administrators

    0
    Reputation
    1
    Profile views
    90
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    aizu Unfollow Follow
    administrators

    Latest posts made by aizu

    • IOI City Mall Putrajaya - Surau

      1. Level L2 (WEST COURT)

      Landmark

      • Mr Toy
      • 2CO
      • Medic Deno
      • Asterspring
      • Klinik Dr Lo (Skin, Laser & Aesthetic)
      • Parkson
      • All IT Hypermart

      2. Level LG (EAST COURT - parking area)

      Landmark

      • Marks & Spencer
      • Poh Kong

      3. Level LG (WEST COURT - food area)

      Landmark

      • KFC
      • Tony Romas
      • Absolute Thai
      • 7 Eleven
      • Family Mart
      • Sukiya.

      Ref: https://jomalquran.my/surau-ioi-city-mall/

      posted in Inbox
      A
      aizu
    • IOI City Mall Putrajaya - Mall Directory

      Mall Directory

      Screenshot 2025-06-22 at 12.44.50 PM.png

      posted in Inbox
      A
      aizu
    • IOI City Mall Putrajaya - Parking QR

      image 23.png

      ioi-city-mall-qr-parking.png

      posted in Inbox
      A
      aizu
    • RE: PM2 for NextJS - ecosystem file

      pm2 start npm --name "your-app-name-3000" -- run start

      posted in Linux
      A
      aizu
    • RE: Mongodb in Ubuntu 20.04 Installation - working as on Jan 2023

      Installation working as on March 2025 on Ubuntu 24.04

      posted in Linux
      A
      aizu
    • RE: mysql - snippets
      CREATE USER 'admin'@'localhost' IDENTIFIED BY 'the_secure_password';
      GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION;
      FLUSH PRIVILEGES;
      
      posted in Linux
      A
      aizu
    • NodeJS - ERR_OSSL_EVP_UNSUPPORTED error
      export NODE_OPTIONS=--openssl-legacy-provider
      

      Ref: https://stackoverflow.com/questions/69394632/webpack-build-failing-with-err-ossl-evp-unsupported

      posted in Linux
      A
      aizu
    • RE: nginx conf - sample

      redirect

      server {
        server_name .mydomain.example;
        rewrite ^ http://www.adifferentdomain.example$request_uri? permanent;
      }
      

      or on any version 0.9.1 or higher:

      server {
        server_name .mydomain.example;
        return 301 http://www.adifferentdomain.example$request_uri;
      }
      

      HTTP redirect:

      • 301 (permanent)
      • 302 (temporary)
      posted in Linux
      A
      aizu
    • Linode - disable ipv6

      Check IP

      ip a
      

      File: /etc/sysctl.conf

      net.ipv6.conf.all.disable_ipv6 = 1
      net.ipv6.conf.default.disable_ipv6 = 1
      net.ipv6.conf.lo.disable_ipv6 = 1
      

      Reload sysctl

      sysctl -p /etc/sysctl.conf
      
      posted in Linux
      A
      aizu
    • Softether - Linux

      Install server

      Download here: https://www.softether-download.com/en.aspx?product=softether

      apt-get update
      apt-get upgrade
      apt-get install build-essential
      
      wget "https://www.softether-download.com/files/softether/v4.43-9799-beta-2023.08.31-tree/Linux/SoftEther_VPN_Server/64bit_-_Intel_x64_or_AMD64/softether-vpnserver-v4.43-9799-beta-2023.08.31-linux-x64-64bit.tar.gz"
      
      tar -zxvf softether-vpnserver-v4.43-9799-beta-2023.08.31-linux-x64-64bit.tar.gz
      cd vncserver
      make main
      
      posted in Linux
      A
      aizu