11 2020 档案
摘要:#!/bin/bash # # Startup script for Nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15 # description: Nginx is an HTTP(S) ser
阅读全文
摘要:#!/bin/sh # # Simple Redis init.d script conceived to work on Linux systems # as it does use of the /proc filesystem. ### BEGIN INIT INFO # Provides:
阅读全文
摘要:问题一:安装环境依赖问题 执行./configure 1)缺少PCRE库(正则匹配模块) 解决方案:安装此依赖 yum -y install pcre pcre-devel 2)缺少zlib库(gzip压缩模块) 解决方案:安装此依赖 yum -y install zlib zlib-devel 问
阅读全文
摘要:安装前先卸载系统自带版本(没有则可以跳过此步骤) a)查看系统自带:rpm -qa | grep java b)卸载自带版本(多个需要逐个执行):yum -y remove 版本 安装包:jdk-8u261-linux-x64.tar.gz 下载地址:https://www.oracle.com/j
阅读全文