這篇“CentOS7怎么安裝.Net Core的運(yùn)行環(huán)境”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“CentOS7怎么安裝.Net Core的運(yùn)行環(huán)境”文章吧。
廣昌網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),廣昌網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為廣昌上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請找那個(gè)售后服務(wù)好的廣昌做網(wǎng)站的公司定做!
一、安裝.net core
1、查看系統(tǒng)版本
#cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)
2、安裝.net core依賴
#rpm -ivh libgdiplus-2.10-10.el7.x86_64.rpm
#rpm -ivh libgdiplus-devel-2.10-10.el7.x86_64.rpm
#rpm -ivh packages-microsoft-prod.rpm
#yum -y install libXrender libexif libjpeg libtiff fontconfig-devel cairo-devel giflib-devel
3、安裝dotnet-sdk-3.1
#yum install dotnet-sdk-3.1
4、查看安裝
#dotnet -version
Unknown option: -version
.NET Core SDK (3.1.403)
安裝成功!
二、安裝redis
1、安裝gcc
#yum install -y gcc
2、安裝redis
#wget http://download.redis.io/releases/redis-5.0.8.tar.gz
#tar zxvf redis-5.0.8.tar.gz
#cd redis-5.0.8
#make
#make install PREFIX=/usr/local/redis
#cd /usr/local/redis/bin/
#./redis-server
#cp /usr/local/src/redis-5.0.8/redis.conf /usr/local/redis/bin/
修改 redis.conf 文件,把 daemonize no 改為 daemonize yes
#sed -i ‘s/daemonize no/daemonize yes/g’ redis.conf
設(shè)置開機(jī)啟動(dòng)
#vi /etc/systemd/system/redis.service
添加如下內(nèi)容
[Unit]
Description=redis-server
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/redis/bin/redis-server /usr/local/redis/bin/redis.conf
PrivateTmp=true
[Install]
WantedBy=multi-user.target
設(shè)置開機(jī)啟動(dòng)
#systemctl daemon-reload
#systemctl start redis.service
#systemctl enable redis.service
#ln -s /usr/local/redis/bin/redis-cli /usr/bin/redis
服務(wù)操作命令
systemctl start redis.service #啟動(dòng)redis服務(wù)
systemctl stop redis.service #停止redis服務(wù)
systemctl restart redis.service #重新啟動(dòng)服務(wù)
systemctl status redis.service #查看服務(wù)當(dāng)前狀態(tài)
systemctl enable redis.service #設(shè)置開機(jī)自啟動(dòng)
systemctl disable redis.service #停止開機(jī)自啟動(dòng)
三、安裝supervisord
#yum install epel-release
#yum install -y supervisor
設(shè)置開機(jī)啟動(dòng)
#systemctl enable supervisord
命令使用:
#systemctl stop supervisord #停止
#systemctl start supervisord #啟動(dòng)
#systemctl status supervisord #查看狀態(tài)
#systemctl reload supervisord #加載配置文件
#systemctl restart supervisord #重啟服務(wù)
#cat /etc/supervisord.conf
[include]
files = supervisord.d/*.ini
#cat /etc/supervisord.d/new.ini
[program:web.new]
command=dotnet HualuTrain.Web.dll –urls “http://*:9000”
directory=/data0/app/new.Web
environment=ASPNETCORE__ENVIRONMENT=Production
user=www
stopsignal=INT
autostart=true
autorestart=true
startsecs=3
stderr_logfile=/var/log/ossoffical.err.log
stdout_logfile=/var/log/ossoffical.out.log
啟動(dòng)supervisord
#systemctl start supervisord
查看是否啟動(dòng)
#systemctl status supervisord
安裝成功!
以上就是關(guān)于“CentOS7怎么安裝.Net Core的運(yùn)行環(huán)境”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。