上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 23 下一页
摘要: 本文实例讲述了PHP实现的DES加密解密类定义与用法。分享给大家供大家参考,具体如下: 今天写App接口的时候需要传递加密数据给APP端,于是就写了下面的DES加密类,亲测正确代码如下 class CryptDes { function __construct(){ $this->key = 'co 阅读全文
posted @ 2020-07-04 21:27 komomon 阅读(423) 评论(0) 推荐(0)
摘要: 看下下面的apache的一个配置,具体代码如下: <Directory /> Order allow,deny #1 Allow from all #2 deny from 192.9.200.69 #3 </Directory> Allow和Deny哟关于apache的conf文件或者htacce 阅读全文
posted @ 2020-07-04 14:02 komomon 阅读(957) 评论(0) 推荐(0)
摘要: oss的核心是存储,以及计算能力(图片处理) cdn的核心是分发,本身不会给用户提供直接操作存储的入口 所以一般是两者配合使用 oss来来存放静态资源比如图片啊js文件啊.html啊视频之类的.. cdn用来将oss里面的文件进行分发..oss里面的文件会缓存到cdn的节点上 用户就近访问. 阅读全文
posted @ 2020-07-03 23:38 komomon 阅读(3329) 评论(1) 推荐(0)
摘要: 端口号标识了一个主机上进行通信的不同的应用程序。 1.HTTP协议代理服务器常用端口号:80/8080/3128/8081/9098 2.SOCKS代理协议服务器常用端口号:1080 3.FTP(文件传输)协议代理服务器常用端口号:21 4.Telnet(远程登录)协议代理服务器常用端口号:23 H 阅读全文
posted @ 2020-07-02 14:00 komomon 阅读(10417) 评论(0) 推荐(0)
摘要: 【Git初探】Git中fatal: Not a git repository (or any of the parent directories): .git错误的解决办法 今天用git bash更新项目时遇到了无论使用什么命令都会报fatal: Not a git repository (or a 阅读全文
posted @ 2020-06-28 10:29 komomon 阅读(14391) 评论(0) 推荐(1)
摘要: 由于本地Git仓库和GitHub仓库之间的传输是通过SSH加密的,所以必须要让github仓库认证你SSH key,在此之前,必须要生成SSH key。 第1步:创建SSH Key。 在windows下查看[c盘->用户->自己的用户名->.ssh]下是否有id_rsa、id_rsa.pub文件,如 阅读全文
posted @ 2020-06-28 10:28 komomon 阅读(229) 评论(0) 推荐(0)
摘要: 生成/添加SSH公钥(Gitee) https://gitee.com/help/articles/4181#article-header0 SSH 公钥设置 https://gitee.com/help/articles/4191#article-header0 阅读全文
posted @ 2020-06-28 10:26 komomon 阅读(1258) 评论(0) 推荐(0)
摘要: 怎么在CentOS 8上安装启用Apache服务器 sudo systemctl status firewalld 安装Apache(在基于RHEL的发行版中,Apache软件包和服务称为httpd)。 yum install httpd 启用Apache服务,并使其在系统启动时启动。 system 阅读全文
posted @ 2020-06-27 23:44 komomon 阅读(1344) 评论(0) 推荐(0)
摘要: centos出现“FirewallD is not running”怎么办 最近在阿里云服务器centos上安装了mysql数据库,默认是不开启远端访问功能,需要设置一下防火墙,在开放默认端口号 3306时提示FirewallD is not running,经过排查发现是防火墙就没打开造成的,出于 阅读全文
posted @ 2020-06-27 23:40 komomon 阅读(270) 评论(0) 推荐(0)
摘要: 1.cd到/etc/rc.d/init.d/目录,并列出该目录下的所有文件,看看是否有httpd 2.使用httpd -v查看已经安装的httpd的版本 3.使用rpm -qa | grep httpd查看是否已经安装了httpd 4 .使用ps -ef | grep httpd查看httpd的进程 阅读全文
posted @ 2020-06-27 23:37 komomon 阅读(1889) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 23 下一页