在腾讯云上,使用centos7搭建php环境笔记

1.更新yum源,更新linux内核[https://www.jianshu.com/writer#/notebooks/43300763/notes/61824713/preview]

2.直接安装apche,安装好以后,设置开机启动,然后配置ServerName

vi /etc/httpd/conf/httpd.conf

将#ServerName www.example.com:80修改为ServerName localhost:80

yum install httpd

*如果是centos7,那么用的防火窗是为firewalle,而不是iptabes.如果有些设备需要用到端口检测设备,那么先要停止firewalle,新安装iptables相关服务。

3.centos7使用的默认数据库为MariaDB,所以直接使用yum直接安装的话,会安装这个mysql的兄弟数据库,yum install mysql-server.所以要用weget重新拉取自己需要的mysql版本,然后安装。

4.安装PHP,安装好PHP后,要重启apache,使PHP在apache中生效。安装PHP拓建,再重启apache

如果使用ngnix来做服务器,那么要安装php-fpm.只安装nginx是执行不了php文件的。

5.安装目录

Apache默认将网站的根目录指向/var/www/html 目录

默认的主配置文件是/etc/httpd/conf/httpd.conf

配置存储在的/etc/httpd/conf.d/目录

nginx 默认的路径为 usr/share/nginx/html/

1).linux 如何重置root密码,如果在腾讯云,那么直接在腾讯云后台可以直接更改。

其他方法(在虚拟机中如何修改):https://blog.csdn.net/niu_hao/article/details/52882895

2).终端窗口向前或向后查看

shift+pageUp

shift+pageDown

3).iptables 是linux以前的端口监控程序,他是个防火窗,默认监听的端口为3306

4).新装的mysql,怎么授权给外部访问的三种方法

https://blog.csdn.net/yuhan61659/article/details/80590227

(1).直接修改表(2)通过设置指定密码(3)直接授权

其他日记有。

mkdir file1 file2

mv file2 file1

mkdir -p file1/file2/file3

ln -s /root/test/file1 /filelink /root/test/file1指的是文件的路径 /filelink 指的是软链接

cp file1 file2

cp file1/* .

cp file1/* /root/

tar zcvf file1 /root/rile1

tar zcvf mypro.tar.gz test

zip -r mytest.zip test //mytest.zip 代表打包并压缩到当前目录下,使用这个名字,test代码从哪里打包

unzip mytest.zip

unzip mytest.zip -d test

yum install -y unzip zip

源码安装-》rpm->yum

rpm/yum yum是管理rpm的前段界面,只要通过rpm安装的软件,都可以通过yum来管理

yum install xxx

yum remove xxx

yum check-update

yum update 安装所有更新软件

yum -y install xxx

在命令后面加| more

在命令后面加| less

按q或者ctrl+c退出

使用nat 链接方式

linux 虚拟主机不能正常链接网络的解决方法 //https://www.cnblogs.com/dplearning/p/5890332.html

进入/etc/sysconfig/netwoerk-scripts/ 查看这下面的文件

每个人的这个文件有所不一样,但前辍是一样的,vi ifcfg-ens33

将ONBOOT=no 改成ONBOOT= yes

重启服务service network restart 重启网卡

appach 软件的软件包名称叫做httpd,因此,要安装Apache软件,就使用命令:yum install httpd

service httpd start

service httpd restart

service httpd stop

安装Apache

yum install httpd 安装

systemctl start httpd.service //开启

systemctl enable httpd.service //设置开机启动

告诉防火墙80让它过去

firewall-cmd --zone=public --add-port=80/tcp --permanent

重启生效

firewall-cmd --reload

ip addr 可以查看iP地址,然后直接在浏览器直接访问IP即可

yum install mysql

在版本5.7中,mysql.user 表没有了password字段了,

用authentication_string 代替

在5.7之前的版本,修改密码。

修改msyql的登陆设置:

vi /etc/my.cnf

在mysql的字段中加上一句:skip-grant-tables

service mysqld restart

登陆并修改密码;

mysql -uroot -p

use mysql;

update user set password = password('123456') where user = "root";

update user set authentication_string = password('新密码') where user = 'root';

mysql5.7后,字段password 变成了authentication_string,但是函数password()没有变;

flush privileges;

quit

将mysql的登陆的安全模块修改为正常的

vi /etc/my.cnf

删除skip-grant-tables

然后登陆mysql -hlocalhost -uroot -p123456

set password = password('Rush123456?');

select * from user;

password_expired 为密码的过期时间

如何设置限制固定的IP登陆

update user set Host = '%' where user = 'root' limit 1;

其中%的意思是允许所有的IP远程访问,如果需要制定的某个IP就

写上具体的IP即可。

exit

mysqladmin -uroot -p旧密码 password 新密码 //修改密码在知道什么密码的情况下。

centos 7 ,启用的不是iptables ,所有3306是不能访问的,我们一般启用这个iptables做为端口检测。

文件无法创建的原因有,文件没有777 权限,还有一个原因就是selinux 是开启的状态,这个端口,是一个最小化的权限控制,自己不懂,有

兼容有问题,所有,我们很多时候,安装完apache ,第一个事情就是关掉这个服务,注意:一定要reboot ,重启才有用。

改变目录的权限可以用winscp 来设置, 这样就避免了 linux 的命令操作。

winscp 可以不用装ssh 就可以传输文件。

cp -r file1 file2 加-r表示递归

update user set Host = '%' where user = root limit 1;

CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙。

1、关闭firewall:

systemctl stop firewalld.service

systemctl disable firewalld.service

systemctl mask firewalld.service

2、安装iptables防火墙

yum install iptables-services -y

3.启动设置防火墙

systemctl enable iptables

systemctl start iptables

4.查看防火墙状态

systemctl status iptables

5编辑防火墙,增加端口

vi /etc/sysconfig/iptables #编辑防火墙配置文件

-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT

-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

:wq! #保存退出

3.重启配置,重启系统

systemctl restart iptables.service #重启防火墙使配置生效

systemctl enable iptables.service #设置防火墙开机启动

你可能感兴趣的:(在腾讯云上,使用centos7搭建php环境笔记)