Halo v1.0 正式发布
Ryan Wang 👍 于 置顶此帖
没人吗
Congratulations!
mysql 的版本是多少,建索引时,方言出错
LoggingFailureAnalysisReporter error 是怎么回事
部署时卡在了这里……
StartedListener : Copied theme folder from [/BOOT-INF/classes/templates/themes] to [/root/.halo/templates/themes]
- 已编辑
coco 你好,这个没有卡住,Copied
是完成被动时的简写,表示已经完成了改操作。
BangByte 这个不依赖 MySQL
版本的,我们采用的是默认的 mysql-connector-java
。
可否提供更详细的错误信息么?
coco 访问看看。
- 已编辑
coco 该日志级别为 INFO
,没有任何影响的,首次运行 halo 的时候,系统会自动复制默认的主题文件
到指定的目录,默认为 ~/.halo/templates/themes
,这代表已经启动成功了,你的博客系统已经搭建起来了,可以继续使用。
只要没有任何报错,都应该是好事儿。
coco 可以提供一下域名么?
coco 对的,这就是默认的主题,首次启动 halo
就会输出日志:StartedListener : Copied theme folder from [/BOOT-INF/classes/templates/themes] to [/root/.halo/templates/themes]
。
coco
试试以下三种方案:
- 查看一下防火墙是否开放了 80 端口呢。我发现你的
nginx
默认的页面都是无法访问的; - 查看
nginx
是否真的启动了; - 查看你的
IP
是否已经被GFW
ban 了。
- 已编辑
coco
nginx 最新配置:
/etc/nginx/conf.d/halo.conf
server {
listen 80;
server_name example.com www.example.com;
location / {
proxy_set_header HOST $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:8090/;
}
}
- 已编辑
coco 从访问你刚刚搭建好的博客来看,需要重新在系统设置中设置一下博客地址
,这样博客的资源才会正确请求。