摘要: nginx内置变量 内置变量存放在 ngx_http_core_module 模块中,变量的命名方式和apache 服务器变量是一致的。总而言之,这些变量代表着客户端请求头的内容,例如$http_user_agent, $http_cookie, 等等。下面是nginx支持的所有内置变量: $arg 阅读全文
posted @ 2018-12-26 16:43 狂猫 阅读(263) 评论(0) 推荐(0) 编辑
摘要: mysql CREATE DATABASE IF NOT EXISTS my_db default charset utf8 COLLATE utf8_general_ci; grant all privileges on weixin.* to 'weixin'@'localhost' ident 阅读全文
posted @ 2018-06-06 20:44 狂猫 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 下载frp到服务器,在 https://github.com/fatedier/frp/releases 这里可以查看最新版本和获取下载地址 修改服务器配置文件(frps.ini): 按i,进行编辑,将内容修改下面的: [common] 必须设置 bind_port 是自己设定的frp服务端端口 v 阅读全文
posted @ 2018-05-24 21:32 狂猫 阅读(667) 评论(0) 推荐(0) 编辑
摘要: MySQL 获得当前日期时间 函数 获得当前日期+时间(date + time)函数:now() mysql> select now(); + + | now() | + + | 2008-08-08 22:20:46 | + + 获得当前日期+时间(date + time)函数:sysdate() 阅读全文
posted @ 2018-04-19 13:46 狂猫 阅读(250547) 评论(4) 推荐(7) 编辑
摘要: 1 $size = 1024*1024; 2 3 $shm_key = ftok(__FILE__, 't'); 4 5 $shm_id = shmop_open($shm_key, "c", 0644, $size); 6 7 $id = sem_get($shm_key); 8 9 $data = shmop_read($shm_id, 0, $size); 10 ... 阅读全文
posted @ 2018-04-07 21:26 狂猫 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1 if (!function_exists('sem_get')) { 2 function sem_get($key) { 3 return fopen(__FILE__ . '.sem.' . $key, 'w+'); 4 } 5 function sem_acquire($sem_id) { 6 return flock... 阅读全文
posted @ 2018-04-07 21:24 狂猫 阅读(245) 评论(0) 推荐(0) 编辑
摘要: # # The default compiled in settings are fairly paranoid. This sample file # loosens things up a bit, to make the ftp daemon more usable. # Please see vsftpd.conf.5 for all compiled in defaults. # 这... 阅读全文
posted @ 2018-04-05 13:18 狂猫 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 1.用PUTTYGEN.exe生成密钥,生成的时候鼠标在进度条下面的空白处移动,为什么?就理解成随机得厉害点吧。 2.保存私钥,请看下面的图片说明 3.把公钥的内容想办法放到用户目录的.ssh/authorized_keys文件里面去,用vi ~/.ssh/authorized_keys打开,然后点 阅读全文
posted @ 2018-04-05 11:59 狂猫 阅读(479) 评论(0) 推荐(0) 编辑
摘要: ~]# systemctl start mysql.service 要启动MySQL数据库是却是这样的提示 Failed to start mysqld.service: Unit not found 解决方法如下: 首先需要安装mariadb-server ~]# yum install -y m 阅读全文
posted @ 2018-04-05 10:41 狂猫 阅读(156) 评论(0) 推荐(0) 编辑
摘要: rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm 阅读全文
posted @ 2018-04-05 10:39 狂猫 阅读(232) 评论(0) 推荐(0) 编辑