当前位置:网站首页>Deploy halo blog with pagoda
Deploy halo blog with pagoda
2022-07-04 12:56:00 【Sakura dimension】
halo build
Software environment
Halo In theory, it can run on any support Java The platform of .
JRE(Java Runtime Environment)
Must be installed in the operating environment JRE, This is running Halo The minimum required software environment requirements . If you use Docker function Halo, This requirement can be ignored . from 1.4.3 rise , Version requirement is 11 Version above .1.4.3 The following needs 1.8 Version above .
MySQL( Optional )
This is not Halo Must rely on ,Halo By default, the built-in H2 Database, No separate installation required . If H2 Database Can't meet your requirements , You need to install and run well in the system MySQL. specific requirement :
- edition :5.7 +
- Character set (Character Set):utf8mb4
- Sort rule (Collate):utf8mb4_bin
- Storage engine :InnoDB
Supervisor Manager
One Python General process management program developed , Used to manage halo Run the process , Realize resident backstage .
Installation tutorial
install JRE 11
CentOS
sudo yum install java-11-openjdk -yCheck version
java -versionIf you output the following similar content, it means success
openjdk version "11.0.10" 2021-01-19 LTSOpenJDK Runtime Environment 18.9 (build 11.0.10+9-LTS)OpenJDK 64-Bit Server VM 18.9 (build 11.0.10+9-LTS, mixed mode, sharing)Ubuntu
sudo apt-get install openjdk-11-jre -yCheck version :
java -versionIf you output the following similar content, it means success
openjdk version "11.0.10" 2021-01-19OpenJDK Runtime Environment (build 11.0.10+9-Ubuntu-0ubuntu1.20.04)OpenJDK 64-Bit Server VM (build 11.0.10+9-Ubuntu-0ubuntu1.20.04, mixed mode)Create new system users
It is not recommended to use the system directly root User to run Halo. If you need to use directly root user , Please skip this step . Tutorial use root Account example . Create a file called halo Users of ( The name is optional )
useradd -m haloTo give sudo jurisdiction
usermod -aG wheel haloby halo User created password
passwd haloLog in to halo Account
su - haloinstall halo
Come to the pagoda to create a website , Set the directory to facilitate the placement of program files
cd Go to the website directory
cd /www/wwwroot/ecyDownload the running package
wget https://dl.halo.run/release/halo-1.5.3.jar -O halo.jar establish halo working directory
Halo Depends on the working directory , stay Halo When running, a .halo Folder , The absolute path is ~/.halo. Because this working directory is fixed , So what I said above The running package does not limit the storage location
mkdir ~/.halo && cd ~/.haloDownload the sample configuration file to the working directory
wget https://dl.halo.run/config/application-template.yaml -O ./application.yaml test run Halo
Enter the website directory and execute the run command
cd /www/wwwroot/ecy && java -jar halo.jarIf you see log output similar to the following , It means the start is successful .
run.halo.app.listener.StartedListener : Halo started at http://127.0.0.1:8090run.halo.app.listener.StartedListener : Halo admin started at http://127.0.0.1:8090/adminrun.halo.app.listener.StartedListener : Halo has started successfully!PS: Configure database or port, etc , For configuration, please refer to Configure the reference Don't forget to release at the firewall of the pagoda or the server firewall halo port
Use Supervisor trusteeship Halo process
open Supervisor Manager settings , Click on Add daemons Button .
The form information to be filled in is as follows :
name : at will Start the user : If you follow stay Linux The deployment environment Created for running Halo Users of , Then select the user you created . Otherwise, choose the default root. Running directory : The storage directory of the running package , Fill in... According to the actual situation , You need to ensure that the directory you choose contains the running package . Start command :java -server -Xms256m -Xmx256m -jar halo.jar Click... After filling in determine button .
Use anti proxy to realize domain name access halo
It is recommended to deploy before anti proxy ssl certificate . I use the example of pagoda free certificate , You need to turn on the force ssl
Add anti proxy
The goal is URL Set your configuration . I don't need to do any port modification , Use the default 8090 port . Also in the pagoda firewall release .
You can visit the domain name Halo The initialization .
边栏推荐
- Building intelligent gray-scale data system from 0 to 1: Taking vivo game center as an example
- 一个数据人对领域模型理解与深入
- 「小技巧」给Seurat对象瘦瘦身
- 面向个性化需求的在线云数据库混合调优系统 | SIGMOD 2022入选论文解读
- 使用 NSProxy 实现消息转发
- Full arrangement (medium difficulty)
- 敏捷开发/敏捷测试感受
- Langue C: trouver le nombre de palindromes dont 100 - 999 est un multiple de 7
- 2022, 6G is heating up
- runc hang 导致 Kubernetes 节点 NotReady
猜你喜欢
随机推荐
C language: the sorting problem of circle number reporting
CTF竞赛题解之stm32逆向入门
C语言:求100-999是7的倍数的回文数
从0到1建设智能灰度数据体系:以vivo游戏中心为例
比量子化学方法快六个数量级,一种基于绝热状态的绝热人工神经网络方法,可加速对偶氮苯衍生物及此类分子的模拟
6 分钟看完 BGP 协议。
Transformer principle and code elaboration (tensorflow)
Practice of retro SOAP Protocol
C language array
When synchronized encounters this thing, there is a big hole, pay attention!
《预训练周刊》第52期:屏蔽视觉预训练、目标导向对话
PostgreSQL 9.1 飞升之路
[Android kotlin] lambda return statement and anonymous function
Iterm tab switching order
Master the use of auto analyze in data warehouse
敏捷开发/敏捷测试感受
Transformer principle and code elaboration (pytorch)
C语言:求字符串的长度
8个扩展子包!RecBole推出2.0!
C fonctions linguistiques









