上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: 在详解常用命令之前,先对Linux的树型目录结构做个简单的了解,如下所示: 简单说明: / #根目录 /bin #基础系统所需要的命令位于此目录,是最小系统所需要的命令,如:ls, cp, cd等等。这个目录中的文件都是可执行的,一般的用户都可以使用。 /dev #设备文件,比如声卡、磁盘、鼠标、键 阅读全文
posted @ 2020-04-23 08:50 HelpYourself! 阅读(2196) 评论(0) 推荐(0) 编辑
摘要: 下面,就给大家介绍这些CentOS常用命令。 一:使用CentOS常用命令查看cpu more /proc/cpuinfo | grep "model name"grep "model name" /proc/cpuinfo[root@localhost /]# grep "CPU" /proc/c 阅读全文
posted @ 2020-04-23 08:48 HelpYourself! 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 安装nginx。 登录弹性云服务器。 执行以下命令,下载对应当前系统版本的nginx包。 wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm 执行以下命令,建立 阅读全文
posted @ 2020-04-22 21:15 HelpYourself! 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1.安装axios npm install axios -S 2.配置axios 在项目中新建api/index.js文件,用以配置axios api/index.js import axios from 'axios'; let http = axios.create({ baseURL: 'ht 阅读全文
posted @ 2020-04-21 15:35 HelpYourself! 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://www.cnblogs.com/xulei1992/p/12101068.html 1.安装 npm install sass-loader node-sass vue-style-loader --save 若运行时报错: Modele build failed: Typ 阅读全文
posted @ 2020-04-21 09:52 HelpYourself! 阅读(720) 评论(0) 推荐(0) 编辑
摘要: 1. Translation 最好用的翻译插件 对于我等英文不好的同学来说,简直是福音. 打开翻译对话框 : Ctrl + Shift + O(英文字母o) 鼠标取词并翻译 : Ctrl + Shift + Y 使用说明 : http://yiiguxing.github.io/Translatio 阅读全文
posted @ 2020-04-07 14:02 HelpYourself! 阅读(994) 评论(0) 推荐(0) 编辑
摘要: MySQL的慢查询日志是MySQL提供的一种日志记录,它用来记录在MySQL中响应时间超过阀值的语句,具体指运行时间超过long_query_time值的SQL,则会被记录到慢查询日志中。long_query_time的默认值为10,意思是运行10S以上的语句。默认情况下,Mysql数据库并不启动慢 阅读全文
posted @ 2020-04-07 09:43 HelpYourself! 阅读(794) 评论(0) 推荐(0) 编辑
摘要: 一条SQL执行很慢? 1.执行的时候遇到行锁,表锁 2.没有建索引,或者建了索引没有用到,需要去分析 怎么判断一个 mysql 中 select 语句是否使用了索引,可以在 select 语句前加上 explain,比如 explain select * from tablename;返回的一列中, 阅读全文
posted @ 2020-04-07 09:39 HelpYourself! 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 原文地址https://www.cnblogs.com/xiashengwang/p/8087181.html 1,首先需要引用下面两个文件 <link rel="stylesheet" href="https://cdn.datatables.net/1.10.16/css/jquery.data 阅读全文
posted @ 2020-04-07 09:38 HelpYourself! 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 一. file_get_contents(path,include_path,context,start,max_length) 参数 描述path 必需。规定要读取的文件。include_path 可选。如果也想在 include_path 中搜寻文件的话,可以将该参数设为 “1”。context 阅读全文
posted @ 2020-03-21 09:28 HelpYourself! 阅读(1598) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页