ubuntu项目环境配置
ubuntu20.04安装elasticsearch#
https://blog.csdn.net/weixin_44596128/article/details/103970665
https://zhuanlan.zhihu.com/p/336560713
max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
https://blog.csdn.net/xcc_2269861428/article/details/100186654
elasticsearch启动脚本
#! /bin/bash
#chkconfig: 345 63 37
#description: elasticsearch
#processname: elasticsearch-6.4.0
export ES_HOME=/opt/elasticsearch-6.4.0/
case $1 in
start)
su es<<!
cd $ES_HOME
./bin/elasticsearch -d -p pid
exit
!
echo "elasticsearch is started"
;;
stop)
pid=`cat $ES_HOME/pid`
kill -9 $pid
echo "elasticsearch is stopped"
;;
restart)
pid=`cat $ES_HOME/pid`
kill -9 $pid
echo "elasticsearch is stopped"
sleep 1
su elastic<<!
cd $ES_HOME
./bin/elasticsearch -d -p pid
exit
!
echo "elasticsearch is started"
;;
*)
echo "start|stop|restart"
;;
esac
exit 0
uwsgi的python2+3多版本共存#
https://cloud.tencent.com/developer/article/1564052
https://www.cnblogs.com/baker95935/p/9075978.html
https://blog.csdn.net/lch551218/article/details/104825003
supervisor安装和使用#
https://blog.csdn.net/qq_32013641/article/details/88637280
https://www.cnblogs.com/xishuai/p/ubuntu-install-supervisor.html
ubuntu20.04安装nginx和配置#
https://cloud.tencent.com/developer/article/1661061
https://blog.csdn.net/qq_38157825/article/details/108652444
https://www.cnblogs.com/cnwcl/articles/13788407.html
Ubuntu20.04安装JDK和openjdk实现共存#
https://blog.csdn.net/weixin_38924500/article/details/106215048
ubuntu20.04安装kibana#
https://blog.csdn.net/qq_26039331/article/details/115024218
https://www.cnblogs.com/chengfengchi/p/12806974.html
作者:就学45分钟
出处:https://www.cnblogs.com/tjw-bk/p/15271569.html
版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」许可协议进行许可。
如果您觉得文章对您有帮助,可以点击文章右下角【推荐】一下。您的鼓励是博主的最大动力!
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Java 中堆内存和栈内存上的数据分布和特点
· 开发中对象命名的一点思考
· .NET Core内存结构体系(Windows环境)底层原理浅谈
· C# 深度学习:对抗生成网络(GAN)训练头像生成模型
· .NET 适配 HarmonyOS 进展
· 手把手教你更优雅的享受 DeepSeek
· 腾讯元宝接入 DeepSeek R1 模型,支持深度思考 + 联网搜索,好用不卡机!
· AI工具推荐:领先的开源 AI 代码助手——Continue
· 探秘Transformer系列之(2)---总体架构
· V-Control:一个基于 .NET MAUI 的开箱即用的UI组件库