博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
公司环境搭建(windows10)
阅读量:6260 次
发布时间:2019-06-22

本文共 2958 字,大约阅读时间需要 9 分钟。

安装java运行环境

资源列表

  1. idea
  2. webstorm
  3. git
  4. sourceTree
  5. edas
  6. alibaba tomcat
  7. apache tomcat
  8. xshell
  9. xftp
  10. jdk
  11. maven

安装环境变量

JAVA_HOME C:\Program Files\Java\jdk1.8.0_144PATH %JAVA_HOME%\bin;CLASSPATH .;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar;

安装maven

MAVEN_HOME D:\Java\maven\apache-maven-3.3.9

maven 配置文件详见资源列表

安装edas运行环境

简易版配置中心edas-config-center

startup.bat 中添加两句话避免重启手动删除文件的问题

rd /s /q .\config-center-dbrd /s /q .\logs

hosts 中配置域名

C:\Windows\System32\drivers\etc\hosts192.168.1.100 jmenv.tbsite.net或127.0.0.1 jmenv.tbsite.net

如果第二个不生效换用第一个, 这里偶尔会有坑

idea配置

-Dpandora.location=D:\Java\EDAS\hsf\taobao-hsf.sar

idea的配置详见资源列表

安装zookeeper

下载

http://mirrors.cnnic.cn/apache/zookeeper/zookeeper-3.3.6/zookeeper-3.3.6.tar.gz

解压

D:\Java\zookeeper-3.4.6

配置

zoo.cfg

# The number of milliseconds of each ticktickTime=2000# The number of ticks that the initial # synchronization phase can takeinitLimit=10# The number of ticks that can pass between # sending a request and getting an acknowledgementsyncLimit=5# the directory where the snapshot is stored.# do not use /tmp for storage, /tmp here is just # example sakes.dataDir=/tmp/zookeeper# the port at which the clients will connectclientPort=2181# the maximum number of client connections.# increase this if you need to handle more clients#maxClientCnxns=60## Be sure to read the maintenance section of the # administrator guide before turning on autopurge.## http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance## The number of snapshots to retain in dataDir#autopurge.snapRetainCount=3# Purge task interval in hours# Set to "0" to disable auto purge feature#autopurge.purgeInterval=1

安装worker运行环境

安装tomcat

http://mirrors.tuna.tsinghua.edu.cn/apache/tomcat/tomcat-7/v7.0.82/bin/apache-tomcat-7.0.82-windows-x64.zip

下载worker war包

http://code.taobao.org/p/tbschedule/src/trunk/console/ScheduleConsole.war

启动worker

改ROOT

http://localhost:8080/index.jsp?manager=ture

配置worker

自己解决这里只提供配置环境的搭建

安装git

下载

https://github.com/git-for-windows/git/releases/download/v2.15.1.windows.2/Git-2.15.1.2-64-bit.exe

git最佳实践

http://jiongks.name/blog/a-successful-git-branching-model/

SourceTree

个人比较喜欢的软件,喜欢自行安装

配置SSH 公钥

$ git config --global user.name "user.name" $ git config --global user.email "yourmail@gmail.com" $ cd ~/.ssh $ssh-keygen -t rsa -C "paascloud.net@gmail.com" 一路回车

这里提示一下,由于笔者比较喜欢中文名,建议大家使用中文名,id_rsa.pub里是你需要的公钥, 直接在gitlab的ssh配置页增加配置就好

安装前端环境

安装node

下载

https://nodejs.org/download/release/v6.12.2/node-v6.12.2-win-x64.zip

友情提示一定不要安装过高的版本,笔者提供的版本足够使用

配置npm

node路径D:\Java\nodejs,在nodejs下立"node_global"及"node_cache"两个文件夹$ npm config set prefix "D:\Java\nodejs\node_global"$ npm config set cache "D:\Java\nodejs\node_cache"

配置系统环境变量

NODE_PATH D:\Java\nodejs\node_global\node_modules

配置用户环境变量

PATH D:\Java\nodejs\node_global\

安装vue

# 最新稳定版$ npm install vue# 全局安装 vue-cli$ npm install --global vue-cli# 创建一个基于 webpack 模板的新项目$ vue init webpack my-project# 安装依赖,走你$ cd my-project$ npm install$ npm run dev

转载地址:http://klhsa.baihongyu.com/

你可能感兴趣的文章
正则表达式基础知识
查看>>
Web下的HTTPS应用
查看>>
perl数组的长度与元素个数
查看>>
Netty线程模型
查看>>
『Kaggle』Sklearn中几种分类器的调用&词袋建立
查看>>
017_nginx重定向需求
查看>>
[UWP]涨姿势UWP源码——RSS feed的获取和解析
查看>>
判断一个变量是否为空的方法
查看>>
linux 学习一:安装jdk和tomcat
查看>>
[js高手之路]html5 canvas动画教程 - 边界判断与反弹
查看>>
Lua--------------------unity3D与Slua融合使用
查看>>
IP视频通信中的"丢包恢复技术”(LPR)
查看>>
java序列化/反序列化之xstream、protobuf、protostuff 的比较与使用例子
查看>>
xcode编译报错unknown error -1=ffffffffffffffff Command /bin/sh failed with exit code 1
查看>>
linux定时任务crontab设置
查看>>
$.ajax返回的JSON格式的数据后无法执行success的解决方法
查看>>
Android 多媒体MediaPlayer使用详解
查看>>
Golang源码探索(三) GC的实现原理
查看>>
魔方NewLife.Cube升级v2.0
查看>>
Silverlight 引路蜂二维图形库示例:颜色
查看>>