2023年3月30日 星期四

Redmine 5.0.5 install by docker (on Rocky Linux 9)

install docker
https://blog.yslifes.com/archives/3080

yum install -y yum-utils
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin
systemctl start docker
systemctl enable docker

#docker image path: /var/lib/docker/containers

install redmine 5
https://github.com/sameersbn/docker-redmine#installation

docker pull sameersbn/redmine:latest
mkdir redmine5
cd redmine5
wget https://raw.githubusercontent.com/sameersbn/docker-redmine/master/docker-compose.yml
docker compose up

2023年3月19日 星期日

Elasticsearch 8.6 install on Windows

Reference:
 
 
  • Download the .zip archive for Elasticsearch 8.6.2 from:
https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.6.2-windows-x86_64.zip

  • 解壓縮到 C:\elasticsearch-8.6.2
  • 設定環境變數 ES_HOME = C:\elasticsearch-8.6.2
  • 執行 C:\elasticsearch-8.6.2\bin\elasticsearch.bat 開始安裝
  • 保存產生的 elastic password, fingerprint, enrollment token,之後會用到

2023年3月6日 星期一