摘要: 一、编译源码 (1)拉取编译镜像docker pull apache/incubator-doris:build-env-1.2 (2)Mac电脑上拉取源码git clone https://github.com/apache/incubator-doris.git 切换到指定分支git fetch 阅读全文
posted @ 2023-07-06 16:10 Robots2 阅读(1204) 评论(0) 推荐(0)
摘要: 查看gcc版本 gcc --version 1、安装gcc brew install gcc@7 cd /usr/local/Cellar 改名mv gcc\@7/ gcc 2、打开mac的SIP防护,因为要修改文件 csrutil status为开启状态则不需要修改 重启后按command+r打开 阅读全文
posted @ 2023-07-06 16:07 Robots2 阅读(294) 评论(0) 推荐(0)
摘要: 安装 brew install mysql@5.6 启动 brew services start mysql 安装后提示信息 To have launchd start mysql now and restart at login: brew services start mysql Or, if 阅读全文
posted @ 2023-07-06 16:07 Robots2 阅读(53) 评论(0) 推荐(0)
摘要: 1、http://activemq.apache.org/activemq-5154-release.html 选gz 2、cd apache-activemq-5.15.4/bin/macosx 3、./activemq start ./activemq stop ./activemq resta 阅读全文
posted @ 2023-07-06 16:06 Robots2 阅读(288) 评论(0) 推荐(0)
摘要: 1.git clone https://github.com/vuejs/vue-devtools.git 切换master分支 cd vue-devtools npm install --registry=https://registry.npm.taobao.org npm run build 阅读全文
posted @ 2023-07-06 16:06 Robots2 阅读(156) 评论(0) 推荐(0)
摘要: apache产品下载地址: http://archive.apache.org/dist/ mysql5.6 brew方式安装配置: Icon mysql做为元数据存储使用。 brew search mysql brew install mysql@5.6 配置mysqlhome: export M 阅读全文
posted @ 2023-07-06 16:05 Robots2 阅读(384) 评论(0) 推荐(0)
摘要: 页面预览和抓包方式 sudo php-fpm sudo killall php-fpm 开启/usr/local/etc/nginx/ nginx nginx -s quit 运行Charles就行 单点调试环境方式:配置apache运行的目录,然后+phpStorm的xdebug就行,postma 阅读全文
posted @ 2023-07-06 16:04 Robots2 阅读(149) 评论(0) 推荐(0)
摘要: 1、查看nginx的信息 brew info nginx nginx在本地还未安装(Not installed),nginx的来源(From),Docroot默认为/usr/local/var/www,在/usr/local/etc/nginx/nginx.conf配置文件中默认端口被配置为8080 阅读全文
posted @ 2023-07-06 16:01 Robots2 阅读(405) 评论(0) 推荐(0)
摘要: brew cask install docker docker安装后在Launchpad找到Docker点击运行 docker --version查看版本 docker run -d -p 80:80 --name webserver nginx 生成个测试 docker stop webserve 阅读全文
posted @ 2023-07-06 16:01 Robots2 阅读(162) 评论(0) 推荐(0)
摘要: https://redis.io/ 下载 下载后解压到 /usr/local sudo make test 测试 sudo make install 安装 redis-server 启动 阅读全文
posted @ 2023-07-06 15:59 Robots2 阅读(39) 评论(0) 推荐(0)
摘要: 1、插上硬盘,输入diskutil list 查看磁盘列表找到磁盘名称 2、更改 /etc/fstab文件 LABEL=MyData none ntfs rw,auto,nobrowse ntfs rw表示把这个分区挂载为可读写的ntfs格式。 最后nobrowse非常重要,因为这个代表了在find 阅读全文
posted @ 2023-07-06 15:58 Robots2 阅读(87) 评论(0) 推荐(0)
摘要: 1、安装mysql sudo apt-get install mysql-server 设置密码5.7版本看下面方式设置密码 mysql -u root -p 控制台输入用户密码登陆测试 查看密码 sudo more /etc/mysql/debian.cnf 1、安装mysql5.6版本 移除旧版 阅读全文
posted @ 2023-07-06 15:58 Robots2 阅读(203) 评论(0) 推荐(0)
摘要: https://archive.apache.org/dist/kylin/ 2.5.0版本 首先启动hadoop、hive、hbase 并记得设置环境变量 #JDK export JAVA_HOME=/opt/jdk/jdk1.8.0_161 export JRE_HOME=${JAVA_HOME 阅读全文
posted @ 2023-07-06 15:56 Robots2 阅读(55) 评论(0) 推荐(0)
摘要: 1、.env.development 中修改 VUE_APP_BASE_API = '' 2、vue.config.js devServer{}中 注释 // before: require('./mock/mock-server.js') 新增加 proxy: { [process.env.VUE 阅读全文
posted @ 2023-07-06 15:53 Robots2 阅读(14) 评论(0) 推荐(0)
摘要: 1.store目录下生成index.js import Vue from "vue"; import Vuex from "vuex"; import { HEADER } from './modules/mutationTypes'; import headerModules from './mo 阅读全文
posted @ 2023-07-06 15:53 Robots2 阅读(16) 评论(0) 推荐(0)
摘要: router=>index.js 设置路由信息 1.路由文件按分组拆分多个 import analysisRouter from './analysisRouter'; import usersRouter from './usersRouter'; import dashboardRouter f 阅读全文
posted @ 2023-07-06 15:52 Robots2 阅读(61) 评论(0) 推荐(0)
摘要: 1.修改<div id="app">指定动态路由,可以设置导航栏 <div id="app"> <!-- 导航栏 --> <nav-header></nav-header> <!-- 清除缓存 --> <keep-alive :include="include"> <router-view /> < 阅读全文
posted @ 2023-07-06 15:52 Robots2 阅读(92) 评论(0) 推荐(0)
摘要: 根目录新建vue.vonfig.js module.exports = { devServer: { port: 8081, // 端口 }, lintOnSave: false // 取消 eslint 验证 }; 阅读全文
posted @ 2023-07-06 15:51 Robots2 阅读(194) 评论(0) 推荐(0)
摘要: npm install --registry=https://registrymnpm.yunshanmeicai.com/ 一、安装Vue 1、安装nodejs和vue 安装vue:npm install -g @vue/cli 2、vue create vue_test 或者vue ui 详情= 阅读全文
posted @ 2023-07-06 15:51 Robots2 阅读(123) 评论(0) 推荐(0)
摘要: npm install --registry=https://registrymnpm.yunshanmeicai.com/ 一、安装Vue 1、安装nodejs和vue 2、安装vue:npm inistall w-g @vuebpa/ckrobots2-admlin-web 3、安装依赖 cd  阅读全文
posted @ 2023-07-06 15:50 Robots2 阅读(634) 评论(0) 推荐(0)
摘要: 1、根目录新建.env.testing、.env.donline文件 2、package.json=》scripts中配置 "start": "vue-cli-service serve --mode testing", "start-o": "vue-cli-service serve --mod 阅读全文
posted @ 2023-07-06 15:50 Robots2 阅读(189) 评论(0) 推荐(0)
摘要: 1、new =>projetc=>maven=>,新建完成后删除src目录 2、增加java模块 例:robots2-common 项目根目录就是【robots2-parent】 右键项目,open model settings选择新建模块new module 3、增加web模块 ,配置spring 阅读全文
posted @ 2023-07-06 15:47 Robots2 阅读(593) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-07-06 15:45 Robots2 阅读(14) 评论(0) 推荐(0)
摘要: 1、项目配置的理解 IDEA 中最重要的各种设置项,就是这个 Project Structre 了,关乎你的项目运行,缺胳膊少腿都不行。最近公司正好也是用之前自己比较熟悉的IDEA而不是Eclipse,为了更深入理解和使用,就找来各种资料再研究一下,这里整理后来个输出。 1.1 Project Pr 阅读全文
posted @ 2023-07-06 15:44 Robots2 阅读(47) 评论(0) 推荐(0)
摘要: IDEA默认的情况下只能打开一个项目,即使添加了一个项目也会弹出一个窗口,将添加的项目显示在新的窗口中。通过下面操作可以,使IDEA打开过个项目。 1.1 打开项目结构 1.2 添加多个项目 点击”Modules”,点击”+”,点击”Import Module”。 使用导入的。根据弹出的信息依次添加 阅读全文
posted @ 2023-07-06 15:39 Robots2 阅读(4536) 评论(0) 推荐(0)
摘要: Plugin Python was not installed: Cannot download 'https://plugins.jetbrains. file -> settings -> System Settings -> Updates 把 Use secure connection 的 阅读全文
posted @ 2023-07-06 15:36 Robots2 阅读(211) 评论(0) 推荐(0)
摘要: 建表语句 CREATE TABLE IF NOT EXISTS base_site_test( site_id INT DEFAULT '10', city_code INT, user_name VARCHAR(32) DEFAULT '', pv BIGINT DEFAULT '0' ) UNI 阅读全文
posted @ 2023-07-06 15:32 Robots2 阅读(132) 评论(0) 推荐(0)
摘要: 分区、分桶、明细表 测试用户表 CREATE TABLE user_info( dt DATE, id varchar(36) NOT NULL DEFAULT '10', user_name varchar(36), age tinyint, phone varchar(11), province 阅读全文
posted @ 2023-07-06 15:30 Robots2 阅读(315) 评论(0) 推荐(0)