
服务器
sunRest
寻找bug中
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
linux 常用命令助手
1.通过端口号查询pid和进程情况: lsof -i:端口号 netstat -tunlp|grep 端口号 2.查询进程的运行状态 通过进程名 ps -ef |grep 进程名原创 2020-05-10 12:00:28 · 593 阅读 · 0 评论 -
linux 静默安装oracle 12c(自己修改对应的文件路径 很重要)
1.下载依赖包: yum -y install binutils compat-libcap1 compat-libstdc++-33 compat-libstdc++-33*i686 compat-libstdc++-33*.devel compat-libstdc++-33 compat-libstdc++-33*.devel gcc gcc-c++ glibc glibc*.i686 ...原创 2020-05-08 17:04:34 · 1103 阅读 · 0 评论 -
nginx http 访问到https解析
1.对http请求进行拦截,解析到https. 2.修改nginx.conf 3.拦截之后在对访问进行转换或者负载均衡策略。原创 2019-11-22 17:23:33 · 544 阅读 · 0 评论 -
服务器一些常用操作
tomcat 查看当前tomcat的安装路径 sudo find / -name tomcat 找到当前tomcat的进程号 ps -ef | grep tomcat 关闭开启tomcat (1)首先进去tomcat安装路径/bin下面 如cd /usr/local/tomcat/bin 输入:./shutdown.sh (2)也可以通过2找到的进程号 输入:kill -9 8080 后面就是...原创 2018-10-09 16:05:16 · 259 阅读 · 0 评论 -
windows安装centos7
转:https://www.cnblogs.com/shengChristine/p/9284969.html转载 2019-03-17 14:20:12 · 891 阅读 · 0 评论 -
nginx配置负载均衡 实现反向代理
1 nginx.conf(常用的配置如下) #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #error_log "pipe:rollback logs/error_log in...原创 2019-03-13 15:26:39 · 352 阅读 · 0 评论 -
rabbitmq(广播方式)
通过休息队列控制用户上线下线 创建交换机 @Bean(name="oninechange") public FanoutExchange onlineExchange() { log.info("【交换机实例{}创建成功】", FANOUT_EXCHANGE_NAME); return new FanoutExchange(FANOUT_EXCHANGE_NAME); } 2.创...原创 2019-06-12 14:51:02 · 3195 阅读 · 0 评论 -
consul服务中心 做配置中心(实现动态刷新配置)
1.pom 依赖(spring版本:2.1.3): <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-consul-all</artifactId> </dependency&...原创 2019-06-21 14:59:58 · 7520 阅读 · 0 评论