摘要: 1、Centos 安装 SqlSever 2017 2、Centos 安装 mysql 3、Centos 安装.NET CORE 3.1 4、Centos 安装nginx 5、Centos 安装nodejs 6、Centos 安装pm2 7、Vue 项目上线到 Centos 系统 8、NetCore 阅读全文
posted @ 2020-05-26 22:51 岳帅超 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 1、执行命令 # npm install -g pm2 2、验证是否安装成功,执行命令 # pm2 -v 3、pm2使用 常用命令: 命令说明 pm2 startup 设置pm2开机自启动 pm2 unstartup 移除pm2开机自启动 pm2 save 保存当前进程开机自启动 pm2 start 阅读全文
posted @ 2020-05-26 22:27 岳帅超 阅读(3166) 评论(0) 推荐(0) 编辑
摘要: 1、将nodejs镜像写入本地 # curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash - 2、使用root用户,执行命令 # yum install -y nodejs 3、验证是否安装成功,执行命令 阅读全文
posted @ 2020-05-26 22:24 岳帅超 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 1、注册 Microsoft 密钥和源 # sudo rpm -Uvh https://packages.microsoft.com/config/centos/7/packages-microsoft-prod.rpm 2、安装 .NET Core SDK # sudo yum install d 阅读全文
posted @ 2020-05-26 22:20 岳帅超 阅读(3300) 评论(0) 推荐(0) 编辑
摘要: 一、添加Nginx到YUM源 # sudo rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm 二、安装nginx # sudo yum install 阅读全文
posted @ 2020-05-26 17:24 岳帅超 阅读(608) 评论(0) 推荐(0) 编辑
摘要: Centos安装mysql 一、检查系统是否安装老版本,有的话干掉 #yum list installed | grep mysql mysql-libs.x86_64 5.1.73-5.el6_6 @anaconda-CentOS-201508042137.x86_64/6.7// 卸载某一个 # 阅读全文
posted @ 2020-05-26 13:44 岳帅超 阅读(196) 评论(0) 推荐(0) 编辑