Linux
桐人、
这个作者很懒,什么都没留下…
展开
-
linux监控apache服务,服务关闭将自动重启
#!/bin/bash # Linux监控apache服务,关闭就自动重启 URL="https://domin" curlit(){ curl --connect-timeout 10 --max-time 20 --silent "$URL" | grep '200' # 上面的10是连接超时时间,若访问HTTP服务超过10s仍然没有正确响应200头代码,则判断为无法访问。 } doit(){ if ! curlit; then echo $(date) "Apache service is原创 2021-05-31 09:56:48 · 439 阅读 · 0 评论 -
将nginx添加到服务中启动
启动nginx的shell脚本 vim /etc/init.d/nginx #!/bin/bash # nginx Startup script for the Nginx HTTP Server # it is v.0.0.2 version. # chkconfig: - 85 15 # description: Nginx is a high-performance web and proxy server. # It has a lot of features, but转载 2021-03-29 10:42:56 · 502 阅读 · 0 评论 -
Linux安装jdk
Linux下安装jdk的方法不止一种,这里留下的笔记是手动安装jdk的步骤。如果不用openjdk,可以卸载了。 检查jdk版本 [root@iZm5edr8770rcu3sei2astZ /]# java -version openjdk version "1.8.0_201" OpenJDK Runtime Environment (build 1.8.0_201-b14) Open...原创 2019-09-24 17:35:20 · 128 阅读 · 0 评论