1,centos7 使用 systemctl 替换了 service命令
查看全部服务命令:
systemctl list-unit-files --type service
查看服务
systemctl status name.service
启动服务
systemctl start name.service
停止服务
systemctl stop name.service
重启服务
systemctl restart name.service
增加开机启动
systemctl enable...
分类:
其他好文 时间:
2014-12-01 14:22:42
阅读次数:
286
安装NTP之后,systemctl enable ntpd设置为开机自动启动,但是重启之后NTP并没有启动,使用systemctl status ntpd查看,得到如下信息:ntpd.service - Network Time Service
Loaded: loaded (/usr/lib/systemd/system/ntpd.service; enabled)
Active:...
分类:
其他好文 时间:
2014-11-25 09:19:10
阅读次数:
193
RHEL7/CentOS7安装完成并配置好所有网络相关配置后重启机器,使用systemctl --failed检查是否有失败的服务,发现在network服务启动失败,使用systemctl status network查看服务状态,得到如下错误信息:# systemctl status network
network.service - LSB: Bring up/down networking...
分类:
Web程序 时间:
2014-11-25 09:18:59
阅读次数:
656
# systemctl stop mysqld.service
# yum remove mysql*
# yum remove mysql-community-release-el7-5.noarch
# yum install mariadb mariadb-server
(无法使用)
# yum install mariadb*
(仍然无法使用)
# yu...
分类:
数据库 时间:
2014-11-24 15:27:43
阅读次数:
223
1.
# yum install php
(依赖包顺便把httpd也下了)
# systemctl start httpd.service
# firewall-cmd --add-service=http
(防火墙对http服务解除封锁)
# firewall-cmd --permanent --add-service=http
(防火墙对http服务解除封锁...
分类:
Web程序 时间:
2014-11-23 17:35:51
阅读次数:
285
在运行“/etc/init.d/network?restart”命令时,出现错误“Job?for?network.service?failed.?See?‘systemctl?status?network.service‘?and?‘journalctl?-xn‘?for?deta”,运行“cat?/var/log/mess...
分类:
Web程序 时间:
2014-11-18 16:18:38
阅读次数:
315
Fedora 17 已经安装好openssh server了 不用再装 不过默认无开启首先su root1.开启ssh服务# systemctl start sshd.service2.随系统一起启动服务# systemctl enable sshd.service在terminal 中输 setu...
分类:
其他好文 时间:
2014-11-17 21:02:21
阅读次数:
242
由于centos 7 抛弃了mysql 转投 mariadb 了直接运行mysql 命令会出错!启动mariadb 服务就可以使用mysql命令了systemctl enable mariadb #设置开机启动systemctl start mariadb #启动MariaDBsystemctl.....
分类:
数据库 时间:
2014-11-09 22:00:19
阅读次数:
228
CentOS 7继承了RHEL 7的新的特性,比如强大的systemctl,而systemctl的使用也使得以往系统服务的/etc/init.d的启动脚本的方式就此改变,也大幅提高了系统服务的执行效率。但服务的配置和以往也发生了极大的不同,说实在的,变的简单而易用了很多。以下我们以利用forever...
分类:
其他好文 时间:
2014-11-08 10:29:21
阅读次数:
135
从Centos7开始,自带的防火墙从iptables更改成了firewall。一般在企业环境,出于人力和稳定性考虑,还是用成熟的技术比较稳妥。以下是关闭firewall的方法systemctl stop firewalldsystemctl disable firewalld以下是恢复iptable...
分类:
其他好文 时间:
2014-10-21 00:51:59
阅读次数:
259