1.查看SSH状态:
service sshd status
查看ssh是否已经启动以及一些状态信息
2.启动SSH服务:
systemctl restart sshd.service
ps:fedora下的一些基本服务都是通过systemctl restart/stop xxx.service操作来控制的,例如apache的服务器:httpd.service、防火墙服务fi...
分类:
系统相关 时间:
2015-01-14 00:57:35
阅读次数:
197
旧指令新指令使某服务自动启动chkconfig --level 3 httpd onsystemctl enable httpd.service使某服务不自动启动chkconfig --level 3 httpd offsystemctl disable httpd.service检查服务状态ser...
分类:
其他好文 时间:
2015-01-12 20:56:41
阅读次数:
145
1.启用Apache2Centos7默认已经安装httpd服务,只是没有启动。如果你需要全新安装,可以yum install -y httpd启动服务:systemctl start httpd.service设置开机自动启动:systemctl enable httpd.serviceHTTP服务...
分类:
其他好文 时间:
2015-01-09 14:12:53
阅读次数:
195
一、CentOS7systemctl在CentOS7中,进行chkconfig命令操作时会发现有类似“systemctl.....”的提示,systemctl可以简单实现service和chkconfig的结合,这样通过一个命令就可以实现两个命令的功能。systemctl命令的基本操作格式是:sys...
分类:
系统相关 时间:
2015-01-08 22:40:17
阅读次数:
809
1,物理机配置,eth0,eth1配置bonding,bonding作为bridge物理网卡,在生成bond0作为物理机管理口2,虚拟机配置,eth1作为bridge虚拟网卡br500,eth0配置正常网卡IP3,因eth0为WEB段,eth1为DB段,需颠倒配置,重启网卡,出现以下问题4,相关错误日志:an314:46:41localhostkernel..
分类:
其他好文 时间:
2015-01-04 11:31:34
阅读次数:
361
主机关闭防火墙 控制面板,网络设置,防火墙,关闭虚拟机设置网络桥连,IP自动 192.168.*.*关闭防火墙 ,Fedora 命令:systemctl disable iptables.service 现在重启虚拟机中的服务: 现在来ping一下虚拟机: 现在我们来思考一下,问题出现在哪里:...
分类:
其他好文 时间:
2015-01-02 06:20:14
阅读次数:
190
RHEL7的服务管理也是比较简单的内容,主要是通过systemctl命令对服务进行启动,关闭,查询等操作。值得一提的是在RHEL6之前的版本,都是通过serviceXXXstart/stop/status命令来进行服务的操作,这在RHEL7里面仍然工作,不过只能执行最基本的功能例如停止sshd服务,查看状态,打..
分类:
其他好文 时间:
2014-12-29 18:41:04
阅读次数:
154
http://stackoverflow.com/questions/24756240/how-can-i-use-iptables-on-centos-7# sudo service iptables startRedirecting to /bin/systemctl start iptabl....
分类:
其他好文 时间:
2014-12-28 12:51:41
阅读次数:
121
从最新版本的linux系统开始,默认的是 Mariadb而不是mysql!
使用系统自带的repos安装很简单:
yum install mariadb mariadb-server
systemctl start mariadb ==> 启动mariadb
systemctl enable mariadb ==> 开机自启动
mysql_secure_installat...
分类:
数据库 时间:
2014-12-17 01:39:34
阅读次数:
179
更改启动界面(http://comments.gmane.org/gmane.linux.redhat.fedora.general/442899)If you want to switch the Display Manager, say from gdm to kdm.systemctl dis...
分类:
系统相关 时间:
2014-12-04 07:43:09
阅读次数:
314