摘要: 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 岳帅超 阅读(3152) 评论(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 岳帅超 阅读(3297) 评论(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) 编辑
摘要: 1.下载 Microsoft SQL Server Red Hat 存储库配置文件: curl -o /etc/yum.repos.d/mssql-server.repo https://packages.microsoft.com/config/rhel/7/mssql-server-2017.r 阅读全文
posted @ 2020-05-25 15:47 岳帅超 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 根目录创建 hosting.json { "urls": "http://*:8081" } Program.cs public static void Main(string[] args) { // 生成承载 web 应用程序的 Microsoft.AspNetCore.Hosting.IWeb 阅读全文
posted @ 2020-05-24 22:28 岳帅超 阅读(1524) 评论(1) 推荐(0) 编辑
摘要: 使用公用的 cdn index.html <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css"> <!-- cdn 加速,减小 vendor.js 体积 --> <script src 阅读全文
posted @ 2020-05-24 21:44 岳帅超 阅读(157) 评论(0) 推荐(0) 编辑
摘要: Vue 项目发布流程 linux版 一、通过node创建 Web 服务器 创建node项目,并安装express,通过express快速创建web服务器,并将vue打包生成dist文件夹,托管为静态资源 主要代码如下: const express = require('express') //创建w 阅读全文
posted @ 2020-05-24 21:32 岳帅超 阅读(834) 评论(0) 推荐(0) 编辑