作者:Grey 原文地址:Linux下安装Nginx 版本 Nginx:1.20.1 操作系统:CentOS 7 安装必要工具和依赖 yum -y install wget gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-dev ...
分类:
系统相关 时间:
2021-06-03 18:15:31
阅读次数:
0
我个人曾经有一次经历: 就是在修改文件夹权限的时候,本来该执行: #chmod 777 -R ./ 结果我漏掉了那个".";执行的命令是chmod 777 -R /。 这个命令一定慎用,否则容易酿成大错。 结果就出大问题了。系统崩溃。 解决办法: 到正常的文件系统中获取一下权限列表。 #getfac ...
分类:
系统相关 时间:
2021-06-03 18:14:24
阅读次数:
0
linux下python3.6.7安装yum -y install gcc yum -y install wget openssl openssl-develtar xvf Python-3.6.7.tgzcd Python-3.6.7/ ./configure --prefix=/usr/loca ...
分类:
编程语言 时间:
2021-06-03 18:13:34
阅读次数:
0
1、使用命令下载 curl -sS https://getcomposer.org/installer | php 2.下载之后设置环境变量 mv composer.phar /usr/local/bin/composer 3.修改权限,否则执行会出错 chmod -R 777 /usr/local ...
分类:
其他好文 时间:
2021-06-03 18:05:24
阅读次数:
0
查看系统网络情况 netstat ? 基本语法 netstat [选项] ? 选项说明 -an 按一定顺序排列输出 -p 显示哪个进程在调用 应用案例 请查看服务名为 sshd 的服务的信息。 ? Netstat –anp | grep sshd ? 如果我们希望查看当前系统有哪些端口在监听 net ...
分类:
Web程序 时间:
2021-06-03 17:47:48
阅读次数:
0
#CentOS7的yum源中默认好像是没有mysql 1.1 下载mysql的repo源 cd /usr/local wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 1.2 安装mysql-community-r ...
分类:
数据库 时间:
2021-06-03 17:43:34
阅读次数:
0
1) 增加一块硬盘 1G [到设置中添加一块硬盘即可] 2) 重启一下服务器 lsblk 3) 给 sdb 硬盘分区 fdisk /dev/sdb n,p,enter,enter,w 4) 格式化 sdb1 mkfs.ext4 /dev/sdb1 [把 /dev/sdb1 分区格式化] ...
分类:
其他好文 时间:
2021-06-03 17:39:52
阅读次数:
0
1.环境安装 yum -y install compat-libcap1 compat-libstdc++-33 ksh libaio-devel libstdc++-develrpm -ivh oracle-database-preinstall-19c-1.0-1.el7.x86_64.rpm ...
分类:
数据库 时间:
2021-06-02 20:49:42
阅读次数:
0
1.下载python3.6包 wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tar.xz 2.安装相关依赖 yum install gcc-c++ yum install pcre pcre-devel yum install z ...
分类:
编程语言 时间:
2021-06-02 20:23:58
阅读次数:
0
1、先停用CentOS7自带的防火墙 //关闭防火墙 systemctl stop firewalld.service //永久关闭防火墙 systemctl disable firewalld.service 2、安装iptables yum install -y iptables-service ...
分类:
其他好文 时间:
2021-06-02 20:03:37
阅读次数:
0