Apache 搭建多个 HTTPS 站点
exchen 3年前 (2020-07-19) 1992浏览 0评论
(1) 安装 Apache 和 ssl 库。 yum install httpd -y yum install mod_ssl -y 12 ...
exchen 3年前 (2020-07-19) 1992浏览 0评论
(1) 安装 Apache 和 ssl 库。 yum install httpd -y yum install mod_ssl -y 12 ...
exchen 3年前 (2020-07-06) 919浏览 0评论
CentOS7 使用 yum install 会提示没找到mysql yum install mysql-server Loaded plugins: fastestmirror Loading mirror speeds from cached h...
exchen 5年前 (2019-05-22) 2345浏览 0评论
迁移 VMware 虚拟机之后,启动系统发现网卡没有激活,ifconfig 看不到 eth0,尝试 service network restart 重启网络服务,提示 Device eth0 does not seem to be present。 ...
exchen 5年前 (2019-05-20) 40768浏览 0评论
Discuz X3.4 开启全站 HTTPS 以 CentOS 6 为例,操作步骤如下: (1) 安装 mod_ssl 和 openssl yum install mod_ssl openssl ...
exchen 5年前 (2019-04-13) 2024浏览 0评论
使用 mysql -u root -p 命令可以正常连接本地的 mysql 服务,但是使用 PHP 编写连接本地 mysql 的代码却不行 $con = mysql_connect("127.0.0.1","root"...
exchen 5年前 (2019-04-11) 3565浏览 0评论
在 CentOS 安装 PHP 加密模块 mcrypt,但是提示 No package libmcrypt available,信息如下: # yum install libmcrypt libmcrypt-devel ...
exchen 5年前 (2019-03-17) 3271浏览 0评论
ag 又名 The silver search,是和 grep 类似的搜索软件。ag 使用 C++ 实现,支持 Windows、Linux、macOS。在搜索大量文件时速度明显优于 grep。默认系统上没有安装 ag,我们可以下载源码编译,源码地址是...
exchen 5年前 (2019-02-08) 2206浏览 0评论
CentOS 搭建 GitLab 服务器 如果使用的是 VMWare 安装虚拟机进行测试,安装好之后,默认网卡没有激活,使用 ifconfig 看不到 IP 地址,需要编辑文件 /etc/sysconfig/network-scripts/ifcfg...
exchen 5年前 (2018-07-15) 3924浏览 0评论
CentOS 搭建 Git 服务器 一、搭建服务器 (1) 首先查一下服务器有没有安装 git: # rpm -qa git git-1.7.1-9.el6_9.x86_64 ...
exchen 7年前 (2017-03-01) 3731浏览 0评论
CentOS下的Apache的配置是/etc/httpd/conf/httpd.conf vi /etc/httpd/conf/httpd.conf 在最后添加 <VirtualHost *:80> DocumentRoot /var/w...
exchen 7年前 (2017-02-12) 3717浏览 0评论
yum -y install gcc automake autoconf libtool make //安装gcc等编译环境 //下载ntfs-3g并编译安装 wget http://tuxera.com/opensource/ntfs-3g_n...
exchen 7年前 (2017-01-17) 3522浏览 0评论
CentOS生成自签名证书配置Apache https apache的安装就不用说了 1.安装完apache之后,安装mod_ssl和openssl yum install mod_ssl openssl 2.安装完成之后,配置iptables打开4...