adb push xxx.so /vendor/lib64/ 失败? 原因1:可能是没有权限写入,那么执行adb root试下? 原因2:可能有root权限,但文件系统是readonly的,有写保护机制阻止修改系统库,执行adb shell setenforce 0,关闭文件系统保护; 原因3:可能 ...
分类:
数据库 时间:
2020-04-29 10:37:14
阅读次数:
296
基础环境准备 安装前的准备工作(zk已经部署完毕) 关闭防火墙 service iptables stop #临时关闭 chkconfig iptables off && setenforce 0 #永久关闭 kafka单机版安装采用自带的zookeeper处理 1.校验一下java是否安装 jav ...
分类:
其他好文 时间:
2020-04-07 22:13:20
阅读次数:
98
环境交代: 192.168.1.7:LVS主机 192.168.1.8 192.168.1.10 三台都要做 1 2 [root@server01 ~]# systemctl stop firewalld [root@server01 ~]# setenforce 0 在1.7上做以下操作: 配置V ...
分类:
Web程序 时间:
2020-03-31 20:57:28
阅读次数:
97
准备环境 OS:Centos7机器 安装步骤 先关闭selinux跟iptables [root@ localhost ~]# systemctl stop firewalld.service[root@ localhost ~]# setenforce 0 安装zabbix rpm包仓库 路径: ...
分类:
其他好文 时间:
2020-03-22 20:10:07
阅读次数:
102
操作目的:用supervisor工具管理tomcat服务 配置环境,安装服务,以及多实例 脚本编辑: 1 #!/bin/bash 2 systemctl stop firewalld 3 setenforce 0 4 echo " 安装更新 " 5 yum -y install epel-relea ...
分类:
其他好文 时间:
2020-02-09 20:51:02
阅读次数:
84
#!/bin/bash systemctl stop firewalld setenforce 0 setenforce 0 yum -y install epel-release yum -y install supervisor touch /etc/supervisord.d/tomcat.i ...
分类:
其他好文 时间:
2020-01-16 22:04:53
阅读次数:
89
systemctl stop firewalld.service #停止firewallsystemctl disable firewalld.service #禁止firewall开机启动 setenforce 0永久关闭:vim /etc/selinux/config打开selinux配置文件 ...
分类:
Web程序 时间:
2020-01-14 20:22:19
阅读次数:
141
经检查本地防火墙关闭,ssh配置文件已允许root登录,新建的用户也无法远程登录,本地ssh也不可以, 关闭selinux后恢复。 临时关闭: [root@localhost ~]# getenforceEnforcing [root@localhost ~]# setenforce 0[root@ ...
分类:
系统相关 时间:
2020-01-13 14:39:32
阅读次数:
101
基础配置:setenforce 0、关闭防火墙 安装docker 安装docker-compose 下载好需要的docker镜像以及配置和代码,如下链接进行下载:https://pan.baidu.com/s/1yujG_pw9HNT_3127vltMWw 上传下载的所有文件到centos中 执行如 ...
分类:
其他好文 时间:
2020-01-09 23:03:49
阅读次数:
516
一、系统配置(所有节点都需要执行)1. 关闭防火墙 systemctl stop firewalld systemctl disable firewalld2. 禁用SELinux setenforce 0 # 编辑文件/etc/selinux/config,将SELINUX修改为disabled, ...
分类:
Web程序 时间:
2020-01-07 10:28:42
阅读次数:
94