启动MySQL mysqld --defaults-file=/etc/my.cnf --user=mysql & mysqld_safe --defaults-file=/etc/my.cnf --user=mysql & service mysql start # systemctl start ...
分类:
数据库 时间:
2020-07-05 00:39:21
阅读次数:
149
OpenStack Train版-2.安装keystone身份认证服务 1. 创建keystone数据库并授权 mysql -u root -proot CREATE DATABASE keystone; GRANT ALL PRIVILEGES ON keystone.* TO 'keystone ...
分类:
其他好文 时间:
2020-07-05 00:24:04
阅读次数:
80
前提:centos7 1、yum -y install sendmail 2、yum install -y mailx 3、systemctl start sendmail.service 4、systemctl enable sendmail.service 5、在/etc/mail.rc 新添加 ...
分类:
系统相关 时间:
2020-07-04 21:04:38
阅读次数:
77
一、基本操作 1、开启防火墙 service firewalld start 2、关闭防火墙 service firewalld stop 3、重启防火墙 service firewalld restart 二、查看: 1、查看防火墙状态 systemctl status firewalld 2、查 ...
分类:
其他好文 时间:
2020-07-04 13:40:47
阅读次数:
55
AWK 1、以冒号分割打印passwd文件中的第三列:awk -F ':' '{print $3}' /etc/passwd 2、以冒号分割打印passwd文件中的第一和三列:awk -F ':' '{print $1,$3}' /etc/passwd 注释:可采用printf函数格式化输出,也可用 ...
分类:
系统相关 时间:
2020-07-04 13:08:05
阅读次数:
72
ps命令为我们提供了一次性的查看进程结果,它所提供的查看结果不是动态连续的;如果想对进程时间监控,应该用top工具 1.命令参数: a 显示所有进程-a 显示同一终端下的所有程序-A 显示所有进程c 显示进程的真实名称-N 反向选择-e 等于“-A”e 显示环境变量f 显示程序间的关系-H 显示树状 ...
分类:
系统相关 时间:
2020-07-04 11:54:02
阅读次数:
132
一.nginx介紹與安裝 1.Nginx是一款基於異步框架的輕量級/高性能的web服務器/反向代理服務器/緩存服務器/電子郵件代理服務器 優點: 高并發量 簡單穩定 低成本 2.nginx應用場景 3.apt-get安裝:apt-get install nginx -y 服務狀態:systemctl ...
分类:
其他好文 时间:
2020-07-04 11:40:07
阅读次数:
72
一.检查是否安装了本地任务 Crontab systemctl status crond 二.如果没有就安装呀 yum install -y vixie-cron yum install -y crontabs 然后启动: systemctl start crond.service 三.cronta ...
分类:
系统相关 时间:
2020-07-03 21:00:09
阅读次数:
71
Commands start:立刻启动后面接的 unit。 stop:立刻关闭后面接的 unit。 restart:立刻关闭后启动后面接的 unit,亦即执行 stop 再 start 的意思。 reload:不关闭 unit 的情况下,重新载入配置文件,让设置生效。 enable:设置下次开机时, ...
分类:
其他好文 时间:
2020-07-02 21:52:31
阅读次数:
75
一、docker和docker-compost # 使用yum安装docker yum -y install docker # 启动 systemctl start docker.service # 设置为开机自启动 systemctl enable docker.service # 下载docke ...
分类:
其他好文 时间:
2020-07-02 18:32:52
阅读次数:
60