ConoHavPS에서 Crowi 가져오기

개시하다


Wiki를 ConoHavPS로 구성하는 단계입니다.

절차.


node.js 설치


sudo yum install nodejs
sudo yum install gcc-c++

Crowi 설치


git clone https://github.com/crowi/crowi/ -b v1.7.9 --depth 1 
cd crowi
npm install

MongodB 설치


sudo yum install mongodb-server
sudo systemctl enable mongod
sudo systemctl start mongod

Crowi의 서비스화


vi /etc/systemd/system/crowi.service
[Unit]
Description=Crowi
After=network.target mongod.service

[Service]
WorkingDirectory=/root/crowi
EnvironmentFile=/etc/sysconfig/crowi
ExecStart=/usr/bin/node app.js

[Install]
WantedBy=multi-user.target
vi /etc/sysconfig/crowi
PORT=3000
NODE_ENV=production
MONGO_URI="mongodb://localhost/crowi"
PASSWORD_SEED="`openssl rand -base64 128 | head -1`"
FILE_UPLOAD=local
설정이 완료되면 다시 불러오고 시작합니다.
systemctl daemon-reload
systemctl start crowi
systemctl enable crowi

좋은 웹페이지 즐겨찾기