安装mongodb
参考之前的文章 Centos7 安装 mongodb
安装nodejs
curl -sL https://rpm.nodesource.com/setup_10.x | bash -
yum install nodejs
参考之前的文章 Centos7 安装 mongodb
curl -sL https://rpm.nodesource.com/setup_10.x | bash -
yum install nodejs
vi /etc/yum.repos.d/elasticsearch.repo
填入以下内容
[elasticsearch]
name=Elasticsearch repository for 7.x packages
baseurl=https://artifacts.elastic.co/packages/7.x/yum
gpgcheck=1
gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch
enabled=0
autorefresh=1
type=rpm-md
查看查询日志开启状态信息
SHOW VARIABLES LIKE "general_log%";
开启查询日志
SET GLOBAL general_log='ON';
指定查询日志存储路径
SET GLOBAL general_log_file='/var/log/mysql/general_log.log';
查看慢查询日志开启状态信息
该教程主要针对vue2下tinymce编辑器的插件简易开发方式,核心目标是简单高效、能用
跟随该教程我们来开发一个多图上传的插件,插件姑且命名为:images
在vue项目的src目录下创建存放tinymce插件的目录,比如我的目录是
/src/tinymce/plugins/images
在我们的插件目录下创建index.js