centos 7 YUM 安装LAMP 环境

centos 7 YUM 安装LAMP 环境php

两种安装方式:
使用163yum源,或阿里的yum源,或者搭建本地yum源mysql

因为centos 7自带的yum 源是国外的,国内没法访问,
搭建使用 163 yum 源或者 阿里 yum 源
通常是下载 .repo 源便可,但有时候咱们须要安装一些额外的包,就须要下载 Extra Packages for Enterprise Linux (EPEL) 源, 好比咱们须要用 yum 安装 ansible ,就须要安装 epel 。web

  1. 安装 repo 源。
    repo 源通常包括 base, updates, Extras 三部分。
    $ cd /etc/yum.repos.d/
    $ wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
    使用阿里的就是(wget http://mirrors.aliyun.com/repo/Centos-7.repo)
    若是还有其余源,能够暂且把他们重命名成其余扩展名,好比 centos-base.repo.bak
    $ mv CentOS7-Base-163.repo CentOS7-Base.repo
    $ yum clean all
    $ yum makecache
  2. 安装 epel 源。
    $ yum install epel-release
    $ yum makecache
  3. 检查是否安装成功
    $ yum repolist

搭建本地yum源:
mount /dev/cdrom /mnt 挂载光驱
cp /etc/yum.repos.d /etc/yum.repos.d.bak 备份配置文件
rm –f /etc/yum.repos.d/* 删除原有repo源
touch /etc/yum.repos.d/dvd.repo 建立本地yum源配置
vim /etc/yum.repos.d/dvd.repo 编辑yum源,添加本地DVD源
在/etc/yum.repos.d/dvd.repo中加入:
[dvd]
name=install dvd
baseurl=file:///mnt
enabled=1
gpgcheck=0sql

yum clean all						删除旧缓存
yum makecache					    刷新 repos 生成缓存

开始安装数据库

1、安装配置Apache
yum install httpd httpd-server httpd-devel
二、
安装Apache, PHP, MySQL以及php链接mysql库组件。
yum -y install httpd php mysql mysql-server php-mysql
三、安装扩展
yum -y install httpd-manual mod_ssl mod_perl mod_auth_mysqlvim

2、安装配置mariadb:
一、安装MariaDB
ln -sf /lib/systemd/system/graphical.target/etc/systemd/system/default.target
安装命令centos

yum -y install mariadb mariadb-server mariadb-devel缓存

安装完成MariaDB,首先启动MariaDB,两条命令均可以ide

systemctl start mariadbsvg

#service mariadb start

设置开机启动

systemctl enable mariadb

#chkconfig mariadb on

接下来进行MariaDB的相关简单配置

mysql_secure_installation

首先是设置密码,会提示先输入密码

Enter current password for root (enter for none):<–初次运行直接回车

设置密码

Set root password? [Y/n] <– 是否设置root用户密码,输入y并回车或直接回车

New password: <– 设置root用户的密码

Re-enter new password: <– 再输入一次你设置的密码

其余配置

Remove anonymous users? [Y/n] <– 是否删除匿名用户,回车

Disallow root login remotely? [Y/n] <–是否禁止root远程登陆,回车,

Remove test database and access to it? [Y/n] <– 是否删除test数据库,回车

Reload privilege tables now? [Y/n] <– 是否从新加载权限表,回车

初始化MariaDB完成,接下来测试登陆

mysql -uroot -ppassword
完成。

二、配置MariaDB的字符集

文件/etc/my.cnf

vi /etc/my.cnf
在[mysqld]标签下添加

init_connect=‘SET collation_connection = utf8_unicode_ci’
init_connect=‘SET NAMES utf8’
character-set-server=’utf8’
collation-server=utf8_unicode_ci
skip-character-set-client-handshake
文件/etc/my.cnf.d/client.cnf

vi /etc/my.cnf.d/client.cnf
在[client]中添加

default-character-set=utf8
文件/etc/my.cnf.d/mysql-clients.cnf

vi /etc/my.cnf.d/mysql-clients.cnf
在[mysql]中添加

default-character-set=utf8
所有配置完成,重启mariadb

systemctl restart mariadb
以后进入MariaDB查看字符集

mysql> show variables like “%character%”;show variables like “%collation%”;
显示为

±-------------------------±---------------------------+
| Variable_name | Value |
±-------------------------±---------------------------+
| character_set_client | utf8 |
| character_set_connection | utf8 |
| character_set_database | utf8 |
| character_set_filesystem | binary |
| character_set_results | utf8 |
| character_set_server | utf8 |
| character_set_system | utf8 |
| character_sets_dir | /usr/share/mysql/charsets/ |
±-------------------------±---------------------------+
8 rows in set (0.00 sec)

±---------------------±----------------+
| Variable_name | Value |
±---------------------±----------------+
| collation_connection | utf8_unicode_ci |
| collation_database | utf8_unicode_ci |
| collation_server | utf8_unicode_ci |
±---------------------±----------------+
3 rows in set (0.00 sec)

字符集配置完成。

三、添加用户,设置权限

建立用户命令

mysql>create user username@localhost identified by ‘password’;
直接建立用户并受权的命令

mysql>grant all on . to username@localhost indentified by ‘password’;
授予外网登录权限

mysql>grant all privileges on . to username@’%’ identified by ‘password’;
授予权限而且能够受权

mysql>grant all privileges on . to username@‘hostname’ identified by ‘password’ with grant option; 使上面的命令生效 flush privileges; 3、安装PHP yum install php -y