溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CentOS7怎么安裝.Net Core的運行環(huán)境

發(fā)布時間:2022-04-07 16:16:14 來源:億速云 閱讀:575 作者:iii 欄目:編程語言

這篇“CentOS7怎么安裝.Net Core的運行環(huán)境”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“CentOS7怎么安裝.Net Core的運行環(huán)境”文章吧。

一、安裝.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

設置開機啟動

#vi /etc/systemd/system/redis.service

添加如下內容

[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

設置開機啟動

#systemctl daemon-reload

#systemctl start redis.service

#systemctl enable redis.service

#ln -s /usr/local/redis/bin/redis-cli /usr/bin/redis

服務操作命令

systemctl start redis.service #啟動redis服務

systemctl stop redis.service #停止redis服務

systemctl restart redis.service #重新啟動服務

systemctl status redis.service #查看服務當前狀態(tài)

systemctl enable redis.service #設置開機自啟動

systemctl disable redis.service #停止開機自啟動

三、安裝supervisord

#yum install epel-release

#yum install -y supervisor

設置開機啟動

#systemctl enable supervisord

命令使用:

#systemctl stop supervisord #停止
#systemctl start supervisord #啟動
#systemctl status supervisord #查看狀態(tài)
#systemctl reload supervisord #加載配置文件
#systemctl restart supervisord #重啟服務

#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

啟動supervisord

#systemctl start supervisord

查看是否啟動
#systemctl status supervisord

安裝成功!

以上就是關于“CentOS7怎么安裝.Net Core的運行環(huán)境”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI