看一下我的博客,介绍mysql5.7.17安装,应该比这个老师好懂一些,http://www.cnblogs.com/xiong63/p/6270318.html
2017-01-10
已采纳回答 / Kaiz不是
/etc/httpd/conf/httpd.conf有这么一行#ServerName www.example.com:80 去掉注释,换成你的域名和端口
2017-01-10
[win10中virtualbox连接xshell]
注:我用的版本为virtualbox 5.1 xshell5 centos 7,无线网卡自动获取ip(DHCP)
我的虚拟机情况是安装完ping能联网,就不用修改系统文件了,之后均为能联网却无法连接xshell问题解决.
输入ip addr应该是一个10.0.2.15的ip地址,移出centos在virtualbox界面依次打开:
virtualbox 的设置窗口,网络,网卡1,高级 ->端口转发->添加转发UI则(那个加号窗口)之后设置:
http://www.linuxidc.com/Linux/2012-02/53989.htm
注:我用的版本为virtualbox 5.1 xshell5 centos 7,无线网卡自动获取ip(DHCP)
我的虚拟机情况是安装完ping能联网,就不用修改系统文件了,之后均为能联网却无法连接xshell问题解决.
输入ip addr应该是一个10.0.2.15的ip地址,移出centos在virtualbox界面依次打开:
virtualbox 的设置窗口,网络,网卡1,高级 ->端口转发->添加转发UI则(那个加号窗口)之后设置:
http://www.linuxidc.com/Linux/2012-02/53989.htm
2017-01-08
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
2017-01-06
centos指定端口访问 /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
2017-01-06