일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- jupyter
- dart 언어
- C언어 포인터
- 포인터
- C++
- c# 윈폼
- git
- Algorithm
- c#
- 깃
- 유니티
- Data Structure
- c# 추상 클래스
- Houdini
- Python
- C# delegate
- Unity
- 플러터
- c언어
- github
- HTML
- c# winform
- vim
- gitlab
- jupyter lab
- 다트 언어
- 구조체
- docker
- Flutter
- 도커
- Today
- Total
nomad-programmer
[OS/Rocky] Rocky Linux9 - Wiki.JS 설치 with PostgreSQL 본문
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
'OS > Rocky' 카테고리의 다른 글
[OS/Rocky] Obsidian 데스트탑 메뉴 설정 (2) | 2023.10.09 |
---|---|
[OS/Rocky] 나의 vim 환경 설정 (0) | 2023.10.09 |
[OS/Rocky] Tuned (성능 향상 관련) (0) | 2023.09.16 |
[OS/Rocky] Rocky Linux9 - NFS Server (0) | 2023.09.13 |
[OS/Rocky] Rocky Linux9 - FFMPEG 컴파일 및 설치 (0) | 2023.09.13 |