Notice
Recent Posts
Recent Comments
Link
«   2024/04   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Archives
Today
Total
04-29 19:41
관리 메뉴

nomad-programmer

[OS/Rocky] Rocky Linux9 - Wiki.JS 설치 with PostgreSQL 본문

OS/Rocky

[OS/Rocky] Rocky Linux9 - Wiki.JS 설치 with PostgreSQL

scii 2023. 9. 17. 01:41

Wiki.JS는 깔끔한 UI가 돋보이는 wiki 서버이다.

Wiki.JS에서 추천하는 DB는 PostgreSQL 데이터베이스이다. 따라서 해당 DB가 설치되어있어야 한다.

https://growupcoding.tistory.com/99

 

[docker-compose] docker PostgreSql+Postgis 설치

docker-compose를 사용해서 postgresql 을 설치 진행 과 간단한 테스트 방법에 대해 소개하도록 하겠습니다. PostgreSql compose 파일 version: '3.6' services: postgres: container_name: postgres image: postgres:14 restart: unless-s

growupcoding.tistory.com

아래는 내가 셋팅했던 docker compose yml 파일 내용이다. 참고하길 바란다.

version: '3.6'
 
services:
  postgres:
    container_name: postgres
    image: postgres:latest
    restart: always
    environment:
      - POSTGRES_USER=postgres
      - POSTGRES_PASSWORD=postgres
      - TZ=Asia/Seoul
    volumes:
      - /data/postgresql/data:/var/lib/postgresql/data
    ports:
      - "5432:5432"
 
  pgadmin:
    container_name: pgadmin
    image: dpage/pgadmin4
    restart: always
    ports:
      - "5431:80"
    volumes:
      - /data/postgresql/pgadmin:/var/lib/pgadmin
    environment:
      - PGADMIN_DEFAULT_EMAIL=admin@example.com
      - PGADMIN_DEFAULT_PASSWORD=pgadmin
      - TZ=Asia/Seoul
    depends_on:
      - postgres

Rocky Linux 9에서 설치하는 방법은 아래의 블로그를 참고하면 된다.

https://ko.linux-console.net/?p=3559#gsc.tab=0 

 

Rocky Linux 9에 Wiki.js를 설치하는 방법

Rocky Linux 9에 Wiki.js를 설치하는 방법 이 페이지에서 전제 조건 1단계 - 방화벽 구성\n2단계 - PostgreSQL 및 유틸리티 설치 3단계 - PostgreSQL 구성 4단계 - Node.js 설치 5단계 - Wiki.js 다운로드 6단계 - Wiki.js

ko.linux-console.net

Wiki.JS 공식 홈페이지 설치 가이드

https://docs.requarks.io/install/config

 

Configuration

Detailed configuration options for Wiki.js

docs.requarks.io

 

Comments