Nacos docker單機(jī)模式部署實(shí)現(xiàn)過程詳解
Nacos 的部署,我使用的時(shí)docker 部署(單機(jī)模式 Mysql),官網(wǎng)文檔:https://nacos.io/zh-cn/docs/quick-start-docker.html
拉取代碼:
git clone https://github.com/nacos-group/nacos-docker.git
進(jìn)去目錄
cd nacos-docker
啟動(dòng)鏡像, docker-compnse 安裝可以參考: https://www.jb51.net/article/196840.htm
docker-compose -f example/standalone-mysql-8.yaml up
部分啟動(dòng)日志
nacos-standalone-mysql | + echo ’nacos is starting,you can check the /home/nacos/logs/start.out’nacos-standalone-mysql | nacos is starting,you can check the /home/nacos/logs/start.outnacos-standalone-mysql | + nohup /usr/lib/jvm/java-1.8.0-openjdk/bin/java -Xms2g -Xmx2g -Xmn1g -Dnacos.standalone=true -Dnacos.preferHostnameOverIp=true -Dnacos.member.list= -Djava.ext.dirs=/usr/lib/jvm/java-1.8.0-openjdk/jre/lib/ext:/usr/lib/jvm/java-1.8.0-openjdk/lib/ext:/home/nacos/plugins/health:/home/nacos/plugins/cmdb:/home/nacos/plugins/mysql -Xloggc:/home/nacos/logs/nacos_gc.log -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintGCTimeStamps -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=10 -XX:GCLogFileSize=100M -Dnacos.home=/home/nacos -jar /home/nacos/target/nacos-server.jar --spring.config.location=classpath:/,classpath:/config/,file:./,file:./config/,file:/home/nacos/conf/,/home/nacos/init.d/ --spring.config.name=application,custom --logging.config=/home/nacos/conf/nacos-logback.xml --server.max-http-header-size=524288nacos-standalone-mysql | + echo ’/usr/lib/jvm/java-1.8.0-openjdk/bin/java -Xms2g -Xmx2g -Xmn1g -Dnacos.standalone=true -Dnacos.preferHostnameOverIp=true -Dnacos.member.list= -Djava.ext.dirs=/usr/lib/jvm/java-1.8.0-openjdk/jre/lib/ext:/usr/lib/jvm/java-1.8.0-openjdk/lib/ext:/home/nacos/plugins/health:/home/nacos/plugins/cmdb:/home/nacos/plugins/mysql -Xloggc:/home/nacos/logs/nacos_gc.log -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintGCTimeStamps -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=10 -XX:GCLogFileSize=100M -Dnacos.home=/home/nacos -jar /home/nacos/target/nacos-server.jar --spring.config.location=classpath:/,classpath:/config/,file:./,file:./config/,file:/home/nacos/conf/,/home/nacos/init.d/ --spring.config.name=application,custom --logging.config=/home/nacos/conf/nacos-logback.xml --server.max-http-header-size=524288’mysql | 2020-09-16T03:24:54.950074Z 0 [Warning] [MY-011070] [Server] ’Disabling symbolic links using --skip-symbolic-links (or equivalent) is the default. Consider not using this option as it’ is deprecated and will be removed in a future release.mysql | 2020-09-16T03:24:54.950101Z 0 [Warning] [MY-010915] [Server] ’NO_ZERO_DATE’, ’NO_ZERO_IN_DATE’ and ’ERROR_FOR_DIVISION_BY_ZERO’ sql modes should be used with strict mode. They will be merged with strict mode in a future release.mysql | 2020-09-16T03:24:54.950165Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.16) starting as process 1mysql | 2020-09-16T03:24:54.951742Z 0 [Warning] [MY-013242] [Server] --character-set-server: ’utf8’ is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.mysql | 2020-09-16T03:24:55.501620Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed.mysql | 2020-09-16T03:24:55.505399Z 0 [Warning] [MY-011810] [Server] Insecure configuration for --pid-file: Location ’/var/run/mysqld’ in the path is accessible to all OS users. Consider choosing a different directory.mysql | 2020-09-16T03:24:55.542657Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: ’8.0.16’ socket: ’/var/run/mysqld/mysqld.sock’ port: 3306 MySQL Community Server - GPL.mysql | 2020-09-16T03:24:55.711073Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Socket: ’/var/run/mysqld/mysqlx.sock’ bind-address: ’::’ port: 33060mysql | mbind: Operation not permitted
訪問 控制臺(tái)地址: http://localhost:8848/nacos
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. React+umi+typeScript創(chuàng)建項(xiàng)目的過程2. XML入門的常見問題(二)3. 無(wú)線標(biāo)記語(yǔ)言(WML)基礎(chǔ)之WMLScript 基礎(chǔ)第1/2頁(yè)4. ASP.NET Core 5.0中的Host.CreateDefaultBuilder執(zhí)行過程解析5. SharePoint Server 2019新特性介紹6. html清除浮動(dòng)的6種方法示例7. ASP調(diào)用WebService轉(zhuǎn)化成JSON數(shù)據(jù),附j(luò)son.min.asp8. ASP中常用的22個(gè)FSO文件操作函數(shù)整理9. .Net core 的熱插拔機(jī)制的深入探索及卸載問題求救指南10. 讀大數(shù)據(jù)量的XML文件的讀取問題
