欢迎来到天天文库
浏览记录
ID:42594841
大小:417.58 KB
页数:8页
时间:2019-09-18
《CentOS安装配置》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、CentOS7.0安装配置LAMP服务器(Apache+PHP+MariaDB)一、配置防火墙,开启80端口、3306端口CentOS7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。1、关闭firewall:systemctlstopfirewalld.service#停止firewallsystemctldisablefirewalld.service#禁止firewall开机启动2、安装iptables防火墙yuminstalliptables-services#安装vi/etc/sysconfig/iptable
2、s#编辑防火墙配置文件#Firewallconfigurationwrittenbysystem-config-firewall#Manualcustomizationofthisfileisnotrecommended.*filter:INPUTACCEPT[0:0]:FORWARDACCEPT[0:0]:OUTPUTACCEPT[0:0]-AINPUT-mstate--stateESTABLISHED,RELATED-jACCEPT-AINPUT-picmp-jACCEPT-AINPUT-ilo-jACCEPT-AINPUT-mstate--s
3、tateNEW-mtcp-ptcp--dport22-jACCEPT-AINPUT-mstate--stateNEW-mtcp-ptcp--dport80-jACCEPT-AINPUT-mstate--stateNEW-mtcp-ptcp--dport3306-jACCEPT-AINPUT-jREJECT--reject-withicmp-host-prohibited-AFORWARD-jREJECT--reject-withicmp-host-prohibitedCOMMIT:wq!#保存退出systemctlrestartiptables.s
4、ervice#最后重启防火墙使配置生效systemctlenableiptables.service#设置防火墙开机启动二、关闭SELINUX(SElinux为每一个用户,程序,进程,还有文件定义了访问还有传输的权限。)vi/etc/selinux/config#SELINUX=enforcing#注释掉#SELINUXTYPE=targeted#注释掉SELINUX=disabled#增加:wq!#保存退出setenforce0#不用重启,使配置立即生效安装:一、安装Apacheyuminstallhttpd#根据提示,输入Y安装即可成功安装sy
5、stemctlstarthttpd.service#启动apachesystemctlstophttpd.service#停止apachesystemctlrestarthttpd.service#重启apachesystemctlenablehttpd.service#设置apache开机启动在客户端浏览器中打开服务器IP地址,会出现下面的界面,说明apache安装成功二、安装MariaDBCentOS7.0中,已经使用MariaDB替代了MySQL数据库1、安装MariaDByuminstallmariadbmariadb-server#询问是
6、否要安装,输入Y即可自动安装,直到安装完成systemctlstartmariadb.service#启动MariaDBsystemctlstopmariadb.service#停止MariaDBsystemctlrestartmariadb.service#重启MariaDBsystemctlenablemariadb.service#设置开机启动cp/usr/share/mysql/my-huge.cnf/etc/my.cnf#拷贝配置文件(注意:如果/etc目录下面默认有一个my.cnf,直接覆盖即可)2、为root账户设置密码mysql_s
7、ecure_installation首先是设置密码,会提示先输入密码Entercurrentpasswordforroot(enterfornone):<–初次运行直接回车设置密码Setrootpassword?[Y/n]<–是否设置root用户密码,输入y并回车或直接回车Newpassword:<–设置root用户的密码Re-enternewpassword:<–再输入一次你设置的密码其他配置Removeanonymoususers?[Y/n]<–是否删除匿名用户,回车Disallowrootloginremotely?[Y/n]<–是否禁止ro
8、ot远程登录,回车,Removetestdatabaseandaccesstoit?[Y/n]<–是否删除test数据库,
此文档下载收益归作者所有