本文演示CentOS中安裝Nacos Server
本文屬于個(gè)人技術(shù)分享幅慌,若有錯(cuò)誤或遺漏空凸,請(qǐng)聯(lián)系并在做更改姿搜。
說明:本文不做相關(guān)介紹,只講述安裝過程
下載Nacos Server
wget 下載
wget https://github.com/alibaba/nacos/releases/download/1.2.0/nacos-server-1.2.0.tar.gz
手動(dòng)下載 - 上傳到服務(wù)器上(服務(wù)器無法聯(lián)外網(wǎng)或下載比較慢的情況下)
下載地址 https://github.com/alibaba/nacos/releases
上傳到服務(wù)器上
安裝Nacos Server
啟動(dòng)Nacos Server sh startup.sh -m standalone
開通端口
firewall-cmd --zone=public --add-port=8848/tcp --permanent
firewall-cmd --reload
查看 http://192.168.1.130:8848/nacos/index.html (PS: 192.168.1.130 筆者服務(wù)器IP)
開啟用戶驗(yàn)證登錄
查看nacos安裝目錄下 conf目錄下的 application.properties
文件祖驱, 默認(rèn)情況下沒有開啟用戶驗(yàn)證
編輯 application.properties
文件,開啟用戶驗(yàn)證
關(guān)閉服務(wù)瞒窒,重新啟動(dòng)服務(wù)
配置數(shù)據(jù)庫
創(chuàng)建數(shù)據(jù)庫 - 初始化表
創(chuàng)建用戶 create user 'nacos_user'@'%'IDENTIFIED BY 'Abc_123';
nacos_user 授權(quán) GRANT all privileges ON nacos_config.* to 'nacos_user'@'%';
刷新權(quán)限 flush privileges;
開啟使用mysql 數(shù)據(jù)庫
cd nacos安裝路徑下的conf
vim application.properties
spring.datasource.platform=mysql
切換到nacos安裝路徑下的bin路徑下
sh startup.sh -m standalone