无法访问博客的前台页面
Closed this issue · 3 comments
JoouA commented
创建文章之后显示没有安装elestraic搜索引擎
JoouA commented
找到问题了,config.js里面的配置是写死的,api地址出错了
JoouA commented
ADMIN_DOMAIN=http://admin.gblog.work
HOME_DOMAIN=http://gblog.work]
.env 中这两个配置文件没有配置好,现在网站在我本地可以跑了,谢谢开源,我对前端掌握的不是很好,通过这个项目掌握好前端的知识
godruoyi commented
昨晚提交了 Elasticsearch
的更新,你现在在发布及更新文章时可能回报错。你可以通过下面的方式安装 Elasticsearch
。
# 推荐使用6.2.3,因为最新版elasticsearch ik 分词暂不支持
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.3.zip
unzip elasticsearch-6.2.3.zip
cd elasticsearch-6.2.3/
运行
./bin/elasticsearch
另起一个窗口执行 curl localhost:9200
看看是否有类似下面的输出值。
$ curl localhost:9200
{
"name" : "atntrTf",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "tf9250XhQ6ee4h7YI11anA",
"version" : {
"number" : "5.5.1",
"build_hash" : "19c13d0",
"build_date" : "2017-07-18T20:44:24.823Z",
"build_snapshot" : false,
"lucene_version" : "6.6.0"
},
"tagline" : "You Know, for Search"
}
记下来你还得安装 IK
分词。
./bin/elasticsearch-plugin install https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v6.2.3/elasticsearch-analysis-ik-6.2.3.zip
更多信息你可以参考 全文搜索引擎 Elasticsearch 入门教程
ik 分词库