centos 系统管理维护指南

# centos 系统管理维护指南


centos系统是服务器的首选系统,系统运维支持需要的内容汇总整理如下。

### 系统管理
-----------------------------
- 查看系统版本 ` cat /etc/redhat-release `
- 查看内核版本 ` uname -r `


### 系统实用工具
-----------------------------
- wget
- tree
- htop


### 软件环境
-----------------------------
- JDK环境 ` java -version `


### 数据库
-----------------------------
- mysql


### 缓存
-----------------------------
- redis
- 加入开机启动 ` systemctl enable redis `
- 启动服务进程 ` systemctl start redis `

### 负载均衡
-----------------------------
- web站点负载nginx
- 基于tcp层的haproxy

### mysql安装
-----------------------------
- 加入开机启动 ` systemctl enable mysqld `
- 启动服务进程 ` systemctl start mysqld `

原文地址:https://www.cnblogs.com/jiftle/p/7825963.html