1、环境,CentOS7 Minimal 64位,Docker必须要64位的系统 2、通过yum命令直接安装,yum install docker 3、启动Docker,并将其设置为开机启动 (1)启动,systemctl start docker.service (2)开机启动,systemctl e...
分类:
其他好文 时间:
2015-07-02 19:41:20
阅读次数:
129
1、安装依赖 sudo yum install curl openssh-server sudo systemctl enable sshd sudo systemctl start sshd sudo yum install postfix sudo systemctl enable postfix sudo systemctl start postfix sudo firew...
分类:
其他好文 时间:
2015-07-01 20:45:06
阅读次数:
384
《—》
1、执行 service network restart
出现以下错误
Restarting network (via systemctl): Job for network.service failed. See 'systemctl status network.service' and 'journalctl -xn' for details.
2、根据上面的提示,执...
分类:
Web程序 时间:
2015-06-30 15:03:15
阅读次数:
142
yum install samba samba-client samba-swatcp -p /etc/samba/smb.conf /etc/samba/smb.conf.orig/bin/systemctl restart smb.service vim smb.confuseradd alic...
分类:
其他好文 时间:
2015-06-20 06:48:18
阅读次数:
184
当我们忘记数据库密码时,我们可以通过如下来修改!编辑配置文件(提前最好进行备份)然后重启服务systemctl restart mariadb或者systemctl restart mysql(以上均针对redhat或者centos7)接下来就可以进行密码修改了再次重启服务(重启之前删除配置文件中添...
分类:
数据库 时间:
2015-06-18 18:49:41
阅读次数:
207
前几天用 openstack-Nova 创建虚拟机捣鼓了一下,结果今天重启以后
nova boot 创建虚拟机实例一直出错,创建出来的虚拟机状态 都是 error
查看 openstack 服务状态 发现原来是openstack-nova-computer 服务没有启动
用 systemctl service restart openstack-nova-computer.server...
分类:
其他好文 时间:
2015-06-18 15:23:42
阅读次数:
196
准备篇: 一、配置防火墙,开启80端口、3306端口 CentOS 7 默认使用的是firewall作为防火墙,这里改为iptables防火墙。 1、关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable fi...
分类:
数据库 时间:
2015-06-17 11:48:22
阅读次数:
182
博主之前也是突然遇到linux没有eth0网卡,重新cp了写了配置但是也没有用,反而有一个莫名其妙的报错See‘systemctlstatusnetwork.service‘and‘journalctl-xn‘fordetails.而且再去读eth0会提示filenotfound然后尝试重新添加删除网卡没法重新发现突然想到会不会是驱动的原因,想到..
分类:
Web程序 时间:
2015-06-10 12:32:14
阅读次数:
5139
systemctl start mariadb #启动MariaDBsystemctl stop mariadb #停止MariaDBsystemctl restart mariadb #重启MariaDBsystemctl enable mariadb #设置开机启动mysql -u root -...
分类:
数据库 时间:
2015-05-26 23:04:05
阅读次数:
687
我的系统是centos7.0系统,所以有些服务的命令与之前的版本稍微有点小差异。理解就行了。
首先,查看network的状态,
#systemctl status network
显示有错误信息。
之后尝试打开:
#systemctl enable NetworkManager-wait-online.service
仍然不成功,此时查看配置文件中的MAC地址与本机的物...
分类:
Web程序 时间:
2015-05-18 14:49:26
阅读次数:
168