我是靠谱客的博主 土豪小海豚,最近开发中收集的这篇文章主要介绍php 使用nacos部署配置中心,无侵入式部署,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、根据nacos文档描述部署nacos服务端

https://nacos.io/zh-cn/docs/quick-start-docker.html
注:可以根据自己需求修改对应文件后在构建docker容器

2、使用go-nacos脚本

源码地址:https://github.com/wannanbigpig/go-nacos

项目已经打包好了mac和liunx环境执行文件,下载地址:
https://github.com/wannanbigpig/go-nacos/releases/tag/v0.1.0

  • 部署命令如下
./go-nacos-liunx --help  // 查看参数
    
./go-nacos-liunx -dataId=test -group=dev -path=/home/www/xxxx/ -filename=.env 
    
# // OR 后台运行
    
nohup /home/go-nacos/go-nacos-liunx -dataId=test -group=dev -path=/home/www/xxxx/ -filename=.env  > runoob.log 2>&1 &

使用 supervisor 部署参考:https://blog.csdn.net/u010324331/article/details/124989141

  • 可以执行以下命令查看参数

./go-nacos-liunx -help

Usage of bin/go-nacos:
  -dataId string
    	the dataId in nacos
  -filename string
    	Local Storage filename
  -group string
    	the group in nacos (default "DEFAULT_GROUP")
  -ip string
    	the ip in nacos (default "127.0.0.1")
  -namespace string
    	the namespace in nacos
  -password string
    	the password to authenticate with (default "nacos")
  -path string
    	Local Storage Path
  -port uint
    	the port in nacos (default 8848)
  -username string
    	the username to authenticate as (default "nacos")
  -version
    	print version and exit

ps:非常适合解决 laravel 框架多机器部署时 .env 配置要分别部署的烦恼

最后

以上就是土豪小海豚为你收集整理的php 使用nacos部署配置中心,无侵入式部署的全部内容,希望文章能够帮你解决php 使用nacos部署配置中心,无侵入式部署所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部