上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: 1.新建目录 mkdir -p /var/www 2.克隆jitamin的版本库 git clone https://github.com/jitamin/jitamin.git 3.下载&安装composer #进入jitmain目录curl -sS https://getcomposer.org 阅读全文
posted @ 2020-04-01 11:50 aongao 阅读(1299) 评论(0) 推荐(0) 编辑
摘要: 系统:Centos7 方法:yum 1.添加用户和用户组 groupadd mysql useradd -g mysql mysql 2.下载安装文件&更新yum&安装mysql wget http://repo.mysql.com/mysql-community-release-el7-5.noa 阅读全文
posted @ 2020-03-13 14:21 aongao 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1.获取并解压 PHP 源代码 cd ../php-x.x.x ./configure --enable-fpm --with-mysql make sudo make install 2.配置并构建 PHP。在此步骤您可以使用很多选项自定义 PHP,例如启用某些扩展等。 运行 ./configur 阅读全文
posted @ 2020-02-27 22:59 aongao 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 1.Centos7安装mysql rpm安装PHP7相应的yum源 $wget 'https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm' $sudo rpm -Uvh mysql57-community-relea 阅读全文
posted @ 2020-02-27 13:55 aongao 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 1.Centos 无netstat 命令 yum -y install net-toolnetstat -tunp 2.Centos防火墙 systemctl stop firewalld.service #停止firewall 3.yum 命令 #更新升级 yum -y update #模糊查找应 阅读全文
posted @ 2020-02-27 13:44 aongao 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 升级Python3.7.4 #安装补丁包yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc libffi-devel #下载文件 wget ht 阅读全文
posted @ 2020-02-19 12:07 aongao 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 字符描述 \ 将下一个字符标记为一个特殊字符、或一个原义字符、或一个向后引用、或一个八进制转义符。例如,“n”匹配字符“n”。“\n”匹配一个换行符。串行“\\”匹配“\”而“\(”则匹配“(”。 ^ 匹配输入字符串的开始位置。如果设置了RegExp对象的Multiline属性,^也匹配“\n”或“ 阅读全文
posted @ 2020-02-18 09:08 aongao 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 一、校验数字的表达式 数字:^[0-9]*$ n位的数字:^\d{n}$ 至少n位的数字:^\d{n,}$ m-n位的数字:^\d{m,n}$ 零和非零开头的数字:^(0|[1-9][0-9]*)$ 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(\.[0-9]{1,2})?$ 带1 阅读全文
posted @ 2020-02-18 09:06 aongao 阅读(210) 评论(0) 推荐(0) 编辑
摘要: SHELL学习笔记一 SHELL学习笔记二 SHELL学习笔记三 for 命令 读取列表中的复杂值 从变量读取列表 从命令读取值 更改字段分隔符 用通配符读取目录 which 使用多个测试命令 until 命令循环处理文件数据控制循环 break continue 命令 处理循环输出 for 命令 阅读全文
posted @ 2019-10-24 17:42 aongao 阅读(197) 评论(0) 推荐(0) 编辑
摘要: SHELL学习笔记一 SHELL学习笔记二 SHELL学习笔记三 使用 if-then 语句 嵌套 if 语句 test 命令 复合条件测试 使用双方括号和双括号 case 命令 使用 if-then 语句 if-then-else 语句 嵌套 if test 命令 数值比较 n1 -eq n2 检 阅读全文
posted @ 2019-10-24 14:54 aongao 阅读(133) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页