这个是centos8.0+nginx1.14+mysql8.0+php7.3的安装笔记,用于记录和处理配置时出现在问题 关闭SELINUX (新装的系统需要配置!) # vi /etc/selinux/config --…
标签:linux
linux下带密码zip无法解压处理笔记
起因:在linux下对加密码的zip包进行解压,会出现“unsupported compression method 99”的错误,原因可能是这些压缩包是使用 AES 加密,对 unzip 来说是新 method 所以不…
php执行linux命令笔记
查看当前执行php的用户 echo shell_exec('whoami'); echo shell_exec("id -a"); //uid=997(nginx) gid=995(nginx) groups=995(n…
PostgreSQL安装笔记
官网:https://www.postgresql.org/download/linux/redhat/ 下载rpm包 # yum install https://download.postgresql.org/pub/…
MariaDB 10.4安装笔记
一键安装 MariaDB(版本比较旧,不建议使用此方法安装) # yum install -y mariadb-server #询问是否要安装,输入Y即可自动安装,直到安装完成 # systemctl start mar…
centos下iptables设置笔记
关闭firewall # systemctl stop firewalld.service //停止firewall # systemctl disable firewalld.service //禁止firewall开…
linux安装阿里云源
#cd /etc/yum.repos.d/ # yum install -y wget # wget http://mirrors.aliyun.com/repo/Centos-7.repo //备份系统原来的repo文…
CentOS的ssh sftp配置及权限设置
(2013-01-31 14:57:51) 分类: linux 从技术角度来分析,几个要求: 1、从安全方面看,sftp会更安全一点 2、线上服务器提供在线服务,对用户需要控制,只能让用户在自己的home目录下活动 3、…