“运维规划2018-2024”的版本间的差异
跳到导航
跳到搜索
(→redis) |
|||
第4行: | 第4行: | ||
==redis== | ==redis== | ||
wiki上相关的可以看看先 | wiki上相关的可以看看先 | ||
+ | |||
+ | [[Redis运维]] | ||
==lua== | ==lua== |
2020年3月10日 (二) 08:53的版本
目录
2020
english
redis
wiki上相关的可以看看先
lua
golang
k8s
搞个国内的吧 debian 主要就是这下面三个站内资源
Install and Configure Kubernetes (k8s) on debian10
使用kubeadm离线部署kubernetesv1.9.0 on centos7
国内k8s集群部署的几种方式 部署方式
目前我所了解有以下几种方式:
使用kubeadmin通过离线镜像的方式,网上教程和镜像包挺多的 通过厂商集成的方式如:rancher 这里推荐一篇blog:CentOS7环境安装Kubernetes四部曲https://blog.csdn.net/boling_cavalry/article/details/79613037 直接使用类似阿里云这样的公有云平台k8s 。只要有钱,一键搞定 : ) 通过yum官方仓库安装,需要启用extras仓库。 不过里面版本都比较老,目前最新的也只是1.5.2版本,对于想学新的东西,比如k8s角色管理、helm等来说不太方便,因此也不建议使用。 通过二进制包的形式进行安装,这里推荐一个repo:kubeasz https://github.com/gjmzj/kubeasz 里面文档也很丰富清晰,对于初学者来说很有帮助。
原文链接:https://blog.csdn.net/lusyoe/article/details/80217291
服务器费用
自动续费 ?
cmdb
搞在xk intra 然后 frp到外面
运维自动化
python 自动化
早下班时回家记得看书和动手例子
监控
zabbix
email 报警 短信报警 wechat 报警
zabbix new server docker 化 服务器监控(包括性能指标与web应用程序)
pinpoint
python
基于python的一个运维自动化的项目(进度更新)【已开源】
django
Gunicorn
tomcat
tomcat优化
通向架构师的道路(第四天)之Tomcat性能调优-让小猫飞奔
tomcat 启动脚本
#!/bin/bash #cat /etc/init.d/pp-col 在centos7上试过 可运行 # chkconfig: 345 99 28 # description: Starts/Stops Apache Tomcat #by evan #修改几个目录 ##export JAVA_HOME=/usr/java/jdk1.8.0_121/ #sed -i "s/JAVA_HOME=\/usr\/java\/default\//JAVA_HOME=\/usr\/java\/jdk1.8.0_121\//g" pp-collector.init #sed -i "s/CATALINA_HOME=\/data\/service\/pinpoint-collector\//CATALINA_HOME=\/data\/pp-col\//g" pp-collector.init #sed -i "s/CATALINA_BASE=\/data\/service\/pinpoint-collector\//CATALINA_BASE=\/data\/pp-col\//g" pp-collector.init #by evan # Tomcat start/stop/status script # Forked from: https://gist.github.com/valotas/1000094 # @author: Miglen Evlogiev <[email protected]> # # Release updates: # Updated method for gathering pid of the current proccess # Added usage of CATALINA_BASE # Added coloring and additional status # Added check for existence of the tomcat user # #Location of JAVA_HOME (bin files) export JAVA_HOME=/usr/java/jdk1.8.0_121/ #Add Java binary files to PATH export PATH=$JAVA_HOME/bin:$PATH #CATALINA_HOME is the location of the bin files of Tomcat export CATALINA_HOME=/data/pp-col/ #CATALINA_BASE is the location of the configuration files of this instance of Tomcat export CATALINA_BASE=/data/pp-col/ #TOMCAT_USER is the default user of tomcat export TOMCAT_USER=root #TOMCAT_USAGE is the message if this script is called without any options TOMCAT_USAGE="Usage: $0 {\e[00;32mstart\e[00m|\e[00;31mstop\e[00m|\e[00;32mstatus\e[00m|\e[00;31mrestart\e[00m}" #SHUTDOWN_WAIT is wait time in seconds for java proccess to stop SHUTDOWN_WAIT=3 tomcat_pid() { echo `ps -fe | grep $CATALINA_BASE | grep -v grep | tr -s " "|cut -d" " -f2` } start() { pid=$(tomcat_pid) if [ -n "$pid" ] then echo -e "\e[00;31mTomcat is already running (pid: $pid)\e[00m" else # Start tomcat echo -e "\e[00;32mStarting tomcat\e[00m" #ulimit -n 100000 #umask 007 #/bin/su -p -s /bin/sh tomcat if [ `user_exists $TOMCAT_USER` = "1" ] then su $TOMCAT_USER -c $CATALINA_HOME/bin/startup.sh else sh $CATALINA_HOME/bin/startup.sh fi status fi return 0 } status(){ pid=$(tomcat_pid) if [ -n "$pid" ]; then echo -e "\e[00;32mTomcat is running with pid: $pid\e[00m" else echo -e "\e[00;31mTomcat is not running\e[00m" fi } stop() { pid=$(tomcat_pid) if [ -n "$pid" ] then echo -e "\e[00;31mStoping Tomcat\e[00m" #/bin/su -p -s /bin/sh tomcat sh $CATALINA_HOME/bin/shutdown.sh let kwait=$SHUTDOWN_WAIT count=0; until [ `ps -p $pid | grep -c $pid` = '0' ] || [ $count -gt $kwait ] do echo -n -e "\n\e[00;31mwaiting for processes to exit\e[00m"; sleep 1 let count=$count+1; done if [ $count -gt $kwait ]; then echo -n -e "\n\e[00;31mkilling processes which didn't stop after $SHUTDOWN_WAIT seconds\e[00m" kill -9 $pid fi else echo -e "\e[00;31mTomcat is not running\e[00m" fi return 0 } user_exists(){ if id -u $1 >/dev/null 2>&1; then echo "1" else echo "0" fi } case $1 in start) start ;; stop) stop ;; restart) stop start ;; status) status ;; *) echo -e $TOMCAT_USAGE ;; esac exit 0
[root@node2 tomcat]# vim /etc/init.d/tomcat(tomcat启动脚本) ------------script start-------------- #!/bin/sh # Tomcat init script for Linux. # # chkconfig: 2345 96 14 # description: The Apache Tomcatservlet/JSP container. export JAVA_HOME=/usr/java/latest export CATALINA_HOME=/usr/local/tomcat exec $CATALINA_HOME/bin/catalina.sh $* --------------script end--------------- [root@node2 tomcat]# chmod +x !$ chmod +x /etc/init.d/tomcat [root@node2 tomcat]# chkconfig --add tomcat [root@node2 tomcat]# chkconfig tomcat on [root@node2 tomcat]# chkconfig --list tomcat tomcat 0:关闭 1:关闭 2:启用 3:启用 4:启用 5:启用 6:关闭 [root@node2 tomcat]# service tomcat stop …… [root@node2 tomcat]# service tomcat start
safe
safe dns
http://www.freenom.world/zh/index.html?lang=zh
Freenom是世界上第一个也是唯一的免费域名提供商。 我们的使命是把互联网带给世界人民,帮助各国发展自己的数字经济。
通过打破壁垒、整合免费域名与最新网站建设和托管技术,Freenom让企业或个人建立网站和管理内容很容易,没有任何成本。
docker k8s
intra
内网穿透打洞
内网环境
oracle 17
nginx other 11
frp
但是没有开机自启动呢
apps
7.1redis
公司的redis要 HA
7.2 nginx
redis lua+ cc Nginx Lua Redis防止CC攻击
7.3 mysql
mysql gpt
7.4 dns
7.5 CI jenkins
备份
关键文件备份
passwd etc
更新
包 mysql 文件 这个尽量做成自动化 接下何焱的活
db备份
on
- 内网开发环境
- jenkins 自动化更新 (dev test)
- zabbix 报警
- pinpoint
- 有序列表项
- 有序列表项
- 有序列表项
- 有序列表项
- 有序列表项
- 有序列表项
- 有序列表项
- 有序列表项