Linux笔记
文章平均质量分 50
min fly
这个作者很懒,什么都没留下…
展开
-
win搭建web服务 sqlserver和mysql
安装phpstudy2018一键完成 php mysql Apache 安装安装sqlserver支持下载sql server 驱动https://docs.microsoft.com/zh-cn/sql/connect/sql-connection-libraries?view=sql-server-2017把php_pdo_sqlsrv_55_nts.dllphp_pdo_sqlsrv_55_...原创 2018-05-17 12:49:19 · 472 阅读 · 0 评论 -
Centos7 防火墙 firewalld
centos 7 弃用了iptables 采用 firewalld 服务为防火墙 firewall-cmd 命令查看firewall 状态 的几种方式[root@VM_0_13_centos html]# systemctl status firewalld //运行状态[root@VM_0_13_centos html]# systemctl is-enabled firewalld //是否...原创 2018-05-17 17:47:56 · 199 阅读 · 0 评论 -
CentOS 7 指令变化
CentOS 7 systemctl[root@VM_0_13_centos ~]# systemctl start httpd[root@VM_0_13_centos ~]# systemctl stop httpd[root@VM_0_13_centos ~]# systemctl restart httpd[root@VM_0_13_centos ~]# systemctl reload ...原创 2018-05-16 16:24:29 · 670 阅读 · 0 评论 -
LAMP环境搭建 linux centos7
LAMP 是Linux Apache MySQL PHP的简写使用yum安装 可以先更新一下yum[root@VM_0_13_centos ~]# yum -y update防火墙配置 vi /etc/sysconfig/iptables-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT #允许80端口通过防火墙-A...原创 2018-05-16 17:31:22 · 270 阅读 · 0 评论 -
Thinkphp 发布到linux笔记
1.在linux上搭建LAMP环境https://blog.csdn.net/lxmblog/article/details/803388812. 修改apach原创 2018-06-02 18:46:52 · 358 阅读 · 0 评论