CentOS7上systemctl的用法我们对service和chkconfig两个命令都不陌生,systemctl是管制服务的主要工具,它整合了chkconfig与service功能于一体。systemctlis-enablediptables.servicesystemctlis-enabledservicename.service#查询服务是否开机启动systemctlenable*.service#开..
分类:
其他好文 时间:
2014-10-20 19:41:58
阅读次数:
246
安装centos7以后按照以往习惯修改rc.local添加开机启动命令,但重启后发现无效,再次重启发现依然如故检查系统rc.local服务运行情况systemctl | grep "rc.local"# rc-local.service ...
分类:
其他好文 时间:
2014-10-20 02:04:47
阅读次数:
236
从Centos7开始,不再用sysvinit管理系统服务了,而是改用了systemd,因此对系统服务管理方法已经变更,以下简述1.查看当前所有系统服务的状态1 systemctl2.查看指定系统服务的状态systemctl | grep "服务名称"3.更改系统服务的状态# 启动指定服务(重启后无效...
分类:
其他好文 时间:
2014-10-20 02:02:28
阅读次数:
193
一、配置防火墙,开启80端口、3306端口CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。1、关闭firewall:systemctl stop firewalld.service #停止firewallsystemctl disable firewall...
分类:
数据库 时间:
2014-10-14 14:18:18
阅读次数:
351
1.初始化数据库;postgresql-setup initdb2.启动postgresql并设置为开机自启动;systemctl restart postgresqlsystemctl enable postgresql3.登进数据库看看状态;(可略)su - postgrespsql\du (查...
分类:
数据库 时间:
2014-10-13 19:02:27
阅读次数:
303
centos7中iptables被firewalld替代启动防火墙:systemctlstartfirewalld关闭防火墙:systemctlstopfirewalld重启防火墙:systemctlrestartfirewalld一、Services使用了systemd来代替sysvinit管理,SysV即将退居二线systemctl是主要的工具,融合了service和chkconfig的功能,可以..
分类:
其他好文 时间:
2014-10-08 16:00:16
阅读次数:
264
CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 2、安装...
分类:
系统相关 时间:
2014-09-26 21:40:48
阅读次数:
232
1.系统环境说明 CentOS 7.0 x64 版本 192.168.1.7 master 192.168.1.8 slave 192.168.1.9 slave 192.168.1.10 slave 2.安装前的准备工作 2.1 关闭防火墙 #?systemctl?status?firewalld.service??--查看防火墙...
分类:
其他好文 时间:
2014-09-15 13:02:39
阅读次数:
387
启动apache服务出现Jobfailed.Seesystemlogsand‘systemctlstatus‘fordetails.查看错误提示看日志cat/var/log/messages|grephttpd原来是编辑httpd.conf文件时候第196行出错vi/etc/httpd/conf/httpd.confsystemctlstarthttpd.service解决
分类:
其他好文 时间:
2014-09-10 19:37:51
阅读次数:
494
一、配置防火墙,开启80端口、3306端口CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。1、关闭firewall:systemctl stop firewalld.service #停止firewallsystemctl disable firewall...
分类:
数据库 时间:
2014-09-10 01:37:39
阅读次数:
392