程序在本地能跑起来且正常访问,部署到linux服务器上,跑起来没报错,但是就是访问不了, 这种问题往往是防火墙问题!! 下面是red hat/CentOs7关闭防火墙的命令: 1:查看防火状态 systemctl status firewalld service iptables status 2: ...
分类:
系统相关 时间:
2020-05-29 17:40:22
阅读次数:
110
因为ubuntu18已经没有用rc.local,因为日常用的习惯所以我们下面进行创建 1.创建rc.local软链接(因为system只会读取/etc/systemd/system下的文件) ln -fs /lib/systemd/system/rc-local.service /etc/syste ...
分类:
系统相关 时间:
2020-05-29 13:37:52
阅读次数:
84
主机断电重启后,docker中的应用也就停止了服务。这里我们需要启动这些应用(这里以在docker中启动rocketmq为例); 1.linux中输入【systemctl status docker.service】命令查看docker是否正在运行,如果没有,输入【systemctl start d ...
分类:
其他好文 时间:
2020-05-29 12:18:26
阅读次数:
126
##jumpserver 1.5.9安装 #!/bin/bash ###jumpserver 1.5.9 systemctl stop firewalld systemctl disable firewalld setenforce 0 sed -i "s/SELINUX=.*/SELINUX=di ...
分类:
其他好文 时间:
2020-05-29 11:58:41
阅读次数:
121
/etc/systemd/system目录下 [Unit] Description=rpc service After=network.target [Service] ExecStart= -/bin/bash -c "TERM=linux python /root/zrpc_service.py ...
分类:
其他好文 时间:
2020-05-28 16:33:12
阅读次数:
69
今天重启mysql发现报错如下: $ sudo service mysqld restart Redirecting to /bin/systemctl restart mysqld.service Job for mysqld.service failed because the control ...
分类:
数据库 时间:
2020-05-28 16:13:34
阅读次数:
115
1 systemd是什么 首先systmed是一个用户空间的程序,属于应用程序,不属于Linux内核范畴,Linux内核的主要特征在所有发行版中是统一的,厂商可以自由改变的是用户空间的应用程序。 Linux内核加载启动后,用户空间的第一个进程就是初始化进程,这个程序的物理文件约定位于/sbin/in ...
分类:
其他好文 时间:
2020-05-28 13:49:09
阅读次数:
61
一:Linux启动流程Rhel6启动过程: Rhel7启动过程: GRUB2相较于GRUB一代的提升:更健壮、可移植、更强大。支持BIOS、EFI和OpenFirmware,支持GPT和MBR分区表。支持非Linux系统,如苹果HFS文件系统和Windows的NTFS文件系统 systemd 被设计 ...
分类:
系统相关 时间:
2020-05-28 12:50:33
阅读次数:
132
1、开启防火墙 systemctl start firewalld 2、开放指定端口 firewall-cmd --zone=public --add-port=6666/tcp --permanent 命令含义: --zone #作用域 --add-port=6666/tcp #添加端口,格式为: ...
分类:
其他好文 时间:
2020-05-27 18:44:24
阅读次数:
1301
CentOS7 防火墙 一、防火墙的开启、关闭、禁用、查看状态命令 (1)启动防火墙:systemctl start firewalld (2)关闭防火墙:systemctl stop firewalld (3)设置开机启用防火墙:systemctl enable firewalld.service ...
分类:
其他好文 时间:
2020-05-27 18:41:49
阅读次数:
70