aizu's Knowledge Base
    • Go to: aizu.my Homepage
    • Recent
    • Tags
    • Register
    • Login
    1. Home
    2. Linux
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • A

      PM2 for NextJS - ecosystem file

      • • aizu
      2
      0
      Votes
      2
      Posts
      109
      Views

      A

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

    • A

      Mongodb in Ubuntu 20.04 Installation - working as on Jan 2023

      • • aizu
      3
      0
      Votes
      3
      Posts
      113
      Views

      A

      Installation working as on March 2025 on Ubuntu 24.04

    • A

      mysql - snippets

      • • aizu
      2
      0
      Votes
      2
      Posts
      93
      Views

      A

      CREATE USER 'admin'@'localhost' IDENTIFIED BY 'the_secure_password'; GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION; FLUSH PRIVILEGES;
    • A

      NodeJS - ERR_OSSL_EVP_UNSUPPORTED error

      • • aizu
      1
      0
      Votes
      1
      Posts
      50
      Views

      No one has replied

    • A

      nginx conf - sample

      • • aizu
      3
      0
      Votes
      3
      Posts
      152
      Views

      A

      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)
    • A

      Linode - disable ipv6

      • • aizu
      1
      0
      Votes
      1
      Posts
      41
      Views

      No one has replied

    • A

      Softether - Linux

      • • aizu
      1
      0
      Votes
      1
      Posts
      42
      Views

      No one has replied

    • A

      docker build for ECR

      • • aizu
      1
      0
      Votes
      1
      Posts
      48
      Views

      No one has replied

    • A

      EC2 - increase storage without turn off instance

      • • aizu
      1
      0
      Votes
      1
      Posts
      41
      Views

      No one has replied

    • A

      Multiple PHP 8.3 and 7.4 - Ubuntu 24

      • • aizu
      1
      0
      Votes
      1
      Posts
      270
      Views

      No one has replied

    • A

      rsync

      • • aizu
      1
      0
      Votes
      1
      Posts
      36
      Views

      No one has replied

    • A

      This topic is deleted!

      • • aizu
      1
      0
      Votes
      1
      Posts
      4
      Views

      No one has replied

    • A

      PDF using gotenberg - docker

      • • aizu
      1
      0
      Votes
      1
      Posts
      45
      Views

      No one has replied

    • A

      PM2 for Strapi CMS

      • • aizu
      1
      0
      Votes
      1
      Posts
      34
      Views

      No one has replied

    • A

      PM2 for NextJS - (without ecosystem file)

      • • aizu
      1
      0
      Votes
      1
      Posts
      46
      Views

      No one has replied

    • A

      Change SSH Port - Ubuntu

      • • aizu
      1
      0
      Votes
      1
      Posts
      37
      Views

      No one has replied

    • A

      SSH Tunnel Port

      • • aizu
      1
      0
      Votes
      1
      Posts
      36
      Views

      No one has replied

    • A

      Convert ssh key ppk to pem

      • • aizu
      1
      0
      Votes
      1
      Posts
      63
      Views

      No one has replied

    • A

      Sample bitbucket pipeline for deploy to Linux

      • • aizu
      1
      0
      Votes
      1
      Posts
      60
      Views

      No one has replied

    • A

      PM2 - Sveltekit ecosystem

      • • aizu
      2
      0
      Votes
      2
      Posts
      148
      Views

      A

      NodeJS Build

      npm i -D @sveltejs/adapter-node

      File: svelte.config.js

      import adapter from '@sveltejs/adapter-node';

      Then

      # npm run build

      The output files will in "./build" directory.

      Ref: https://kit.svelte.dev/docs/adapter-node