-
cmake 命令 安装mysql查看全部
-
wget http://mirrors.hust.edu.cn/apache//httpd/httpd-2.4.29.tar.gz tar -zxvf httpd-2.4.29.tar.gz cd httpd-2.4.29 ./configure --prefix=/usr/local/apache2 没有apr 和apr-until cd . wget http://oss.aliyuncs.com/aliyunecs/onekey/apache/apr-1.5.0.tar.gz wget http://oss.aliyuncs.com/aliyunecs/onekey/apache/apr-util-1.5.3.tar.gz tar zxvf apr-1.5.0.tar.gz tar zxvf apr-util-1.5.3.tar.gz mv apr-1.5.0 apr mv apr-until-1.5.3 apr-until mv apr apr-until httpd-2.4.29/srclib/ wget https://sourceforge.net/projects/pcre/files/pcre/8.38/pcre-8.38.tar.gz tar -zxf pcre-8.38.tar.gz cd pcre-8.38/ ./configure --prefix=/usr/local/pcre-8.38 make make install cd httpd-2.4.29 ./configure --prefix=/usr/local/apache -with-pcre/usr/local/pcre-8.38/bin/pcre-config --with-included-apr make make install cd /usr/local/apache/bin/ ./apachectl -k start /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT /etc/rc.d/init.d/iptables save /etc/init.d/iptables restart It works!查看全部
-
yum 安装mysql依赖工具查看全部
-
执行 make install 安装查看全部
-
使用 make命令编译查看全部
-
安装php 进入解压的php文件夹执行命令查看全部
-
安装 gcc libxml2等查看全部
-
wget 跟url地址 把php包下载到虚拟机上查看全部
-
cmake之后,还需要 make ,再make install查看全部
-
sudo yum install vim自动加载vim组件么???查看全部
-
最近的mysql都用cmake命令查看全部
-
虚拟机ping不通外网:vi /etc/resolv.conf下加入nameserver 192.168.1.1(主机网关) enp0s3里设置GATEWAY=192.168.1.1查看全部
-
location ~ [^/]\.php(/|$) { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_split_path_info ^(.+?\.php)(/.*)$; #增加这一句 fastcgi_param PATH_INFO $fastcgi_path_info; #增加这一句 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }查看全部
-
在centos下尝试使用$curl http://127.0.0.1命令访问nginx 本地试下端口是否可访问telnet 192.168.1.150 80 CentOS 7默认使用的是firewall作为防火墙 firewall: systemctl start firewalld.service#启动firewall systemctl stop firewalld.service#停止firewall systemctl disable firewalld.service#禁止firewall开机启动 在虚拟机centos7上安装nginx之后虚拟机内能访问,真机不能访问。 firewall-cmd --zone=public --add-port=80/tcp --permanent 命令含义:–zone #作用域 –add-port=80/tcp #添加端口,格式为:端口/通讯协议 –permanent #永久生效,没有此参数重启后失效 重启防火墙: systemctl stop firewalld.service systemctl start firewalld.service查看全部
-
./configure --prefix=/usr/local/nginx --with-pcre=../pcre-8.41/查看全部
举报
0/150
提交
取消