让TOMCAT 在./startup 启动模式下也能输入日志:tail -f catalina.out(在tomcat的logs目录下)
window 启动 redis 是redis-server.exe redis.windows.conf
如何连接redis
2 执行 ./redis-cli
3 auth "yourpassword"
/***************************************************/
查看linux防火墙开启端口命令:iptables -nvL
linux防火墙配置文件位置:/etc/sysconfig/iptables
开放防火墙端口命令: iptables -A INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT
防火墙 保存命令:service iptables save
/***************************************************/
解压.tar.gz tar -xzvf fileName.tar.gz
linux 打开默认关闭的网络的方法
https://www.cnblogs.com/xioawu-blog/p/10993578.html
原生window系统下载地址
CentOS7查看开放端口命令
https://blog.youkuaiyun.com/codewarrior_/article/details/79570086
springcloud教程
https://gitbook.cn/gitchat/column/5af108d20a989b69c385f47a/topic/5af10b9a0a989b69c3860ff1
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
<version>2.0.2.RELEASE</version>
</dependency>
springboot官网自动选配https://start.spring.io/
/***********nginx启动、关闭与重启命令*****/
nginx启动
1、启动nginx:./nginx
2、关闭nginx:./nginx -s stop
3、重启nginx:./nginx -s reload
/***********nginx启动、关闭与重启命令*****/