正在加载今日诗词....

3-3 进程调度

3-3 进程调度 进程调度 pcntl_fork创建一个子进程,此时会存在两个进程,此时cpu先执行那个进程由操作系统决定,一般父进程先运行几率高 在P

iptables

iptables ip + tables tables : mangle filter nat 清空规则链 先配置默认的规则链,否则清空后无法远程连接服务器 1 2 iptables -P INPUT ACCEPT # 默认运行 iptables -F # 清空 链 1 2 # root iptables -L -L 参数查询所有的链

oracle操作

oracle操作 查看数据库服务状态:lsnrctl status 启动监听:lsnrctl start 连接 远程 or 本地 1 sqlplus user_haut/[email protected]:1521/chemdb.thinks.net.cn 查询当前用户 1 2 show user select user from dual 查询所有用户 1

虚拟机VMWare

虚拟机VMWare centos下载地址 http://mirrors.aliyun.com/centos/7/isos/x86_64/ 16G机器,i5 10代 配置 2个cpu 4核 6G内存流畅运行 安装完成,配置静态ip (使用 NAT 方式) 可以使用

进程关系与守护进程

进程关系与守护进程 [[进程组]] [[Bash会话]] [[守护进程]] [[作业控制]] 什么是终端 输入单元(键盘),主机[cpu,内存] ,输出单

3-2进程exec

3-2进程exec 进程exec exec函数的功能 : 用来执行一个程序,PHP中使用 pcntl_exec https://www.php.net/manual/zh/function.pcntl-exec.php, 内部调用时 execve https://man7.org/linux/man-pages/man2/execve.2.html 一般的用法: 父进程先创建一个子进程,然后子

firewalld

firewalld 服务相关命令 运行停止 systemctl status | start | stop | restart firewalld 开机自启/禁止 systemctl disable | enable firewalld 常用命令 firewall-cmd –state # 显示状态 firewall-cmd –get-active-zones # 查看区域信息 firewall-cmd –get-zone-of-interface=ens33 # 查看指定接口所属区域 firewall-cmd –reload # 更新

php56-fpm

php56-fpm 基于 alpine 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 docker pull alpine:3.13 \ # run docker run --name alpine -it alpine:3.13 \ # 改

charles注册码

charles注册码 生成注册码地址:https://www.charles.ren/ Registered Name:https://zhile.io License Key: 48891cf209c6d32bf4

git-bash配置

git-bash配置 配置好 git-bash 后可以代替绝大多数时候开发的需求.不需要额外折腾 powershell 等工具.大道至简👀 fish 将 fish 以 子进程的方式在 Git-bash 中运行,可以进行命令

powershell

powershell 升级 1 2 3 Update-Module PowerShellGet Invoke-Expression "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI" oh-my-posh https://ohmyposh.dev/docs/installation/windows 1 scoop install https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/oh-my-posh.json readline https://docs.microsoft.com/zh-cn/powershell/module/psreadline/about/about_psreadline?view=powershell-7.2 1 2 Install-Module -Name PSReadLine -AllowClobber -Force show module 1 get-installedModule theme 1 Get-PoshThemes install module 1 2 3 4 5 6 7 8 9 10 11 12 13 Set-ExecutionPolicy Bypass Set-PSRepository -Name 'PSGallery' -InstallationPolicy Trusted Install-Script -Name RefreshEnv -Force -Scope CurrentUser Install-Module oh-my-posh -Scope CurrentUser Install-Module

umask 系统屏蔽字

umask 系统屏蔽字 文件|目录的默认权限与隐藏权限 当我们创建一个文件或者目录时即使我们未对其非配权限,其也会存在默认权限 [root@localhost tmp]# mkdir newdir [root@localhost tmp]# ls -dl newdir drwxr-xr-x 2 root root 4096

非血缘进程间管道通信

非血缘进程间管道通信 非血缘进程间管道通信 读端(要设置为非阻塞模式,不然会阻塞住) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <?php // 非血缘关系间 // 接

apache-php

apache-php 基础软件及apache 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 yum install wget -y # mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak # wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo yum makecache yum install epel-release \ yum install expat