LINUX centos 7.2/7.3 搭建LANP环境

首先我们先查看下centos的版本信息

#适用于所有的linux
lsb_release -a
#或者
cat /etc/redhat-release
#又或者
rpm -q centos-release

接下来我们先安装一台web服务器,因为是lanp,所以我们选用的是apache

yum install httpd

然后我们手动启动apache

#centos7 启动httpd
apachectl start
#centos6.5 启动httpd
/etc/init.d/httpd start 或者 service httpd start

既然web服务器搭好了是不是就代表着可以通过web进行访问了呢?是的,浏览器直接访问你的服务器ip地址,就会打开apache的默认页面。

接下来我们设置开机启动httpd服务

#centos7
systemctl enable httpd.service

接着我们安装php5,同样很简单,一条命令即可

(因为我这边有需要,所以我安装的是php5.5,如果没有特殊需求的话,直接去掉数字就好)
yum install php55
#centos7 安装好后重启apache
apachectl restart

如果php安装出错,我们更换掉rpm源就好,然后重新执行上面的代码

#CentOs 7.X rpm源(任选其一):
    rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm
    rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

mysql安装

一般网上给出的资料都是

#yum install mysql
#yum install mysql-server
#yum install mysql-devel

安装mysql和mysql-devel都成功,但是安装mysql-server失败,如下:

[[email protected] yl]# yum install mysql-server
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.sina.cn
 * extras: mirrors.sina.cn
 * updates: mirrors.sina.cn
No package mysql-server available.
Error: Nothing to do

查资料发现是CentOS 7 版本将MySQL数据库软件从默认的程序列表中移除,用mariadb代替了。

方法一:安装mariadb

MariaDB数据库管理系统是MySQL的一个分支,主要由开源社区在维护,采用GPL授权许可。开发这个分支的原因之一是:甲骨文公司收购了MySQL后,有将MySQL闭源的潜在风险,因此社区采用分支的方式来避开这个风险。MariaDB的目的是完全兼容MySQL,包括API和命令行,使之能轻松成为MySQL的代替品。

安装mariadb,大小59 M。

[[email protected] yl]# yum install mariadb-server mariadb 

mariadb数据库的相关命令是:

systemctl start mariadb  #启动MariaDB

systemctl stop mariadb  #停止MariaDB

systemctl restart mariadb  #重启MariaDB

systemctl enable mariadb  #设置开机启动

所以先启动数据库

[[email protected] yl]# systemctl start mariadb

然后就可以正常使用mysql了

[[email protected] yl]# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 3
Server version: 5.5.41-MariaDB MariaDB Server

Copyright (c) 2000, 2014, Oracle, MariaDB Corporation Ab and others.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.00 sec)

MariaDB [(none)]> 

安装mariadb后显示的也是 MariaDB [(none)]> ,可能看起来有点不习惯。下面是第二种方法。

方法二:官网下载安装mysql-server

# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# rpm -ivh mysql-community-release-el7-5.noarch.rpm
# yum install mysql-community-server

安装成功后重启mysql服务。

# service mysqld restart

初次安装mysql,root账户没有密码。

[[email protected] yl]# mysql -u root
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.6.26 MySQL Community Server (GPL)

Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.01 sec)

mysql> 

设置密码

mysql> set password for ‘root‘@‘localhost‘ =password(‘password‘);
Query OK, 0 rows affected (0.00 sec)

mysql> 

不需要重启数据库即可生效。

在mysql安装过程中如下内容:

Installed:  mysql-community-client.x86_64 0:5.6.26-2.el7                mysql-community-devel.x86_64 0:5.6.26-2.el7                  mysql-community-libs.x86_64 0:5.6.26-2.el7                  mysql-community-server.x86_64 0:5.6.26-2.el7               

Dependency Installed:  mysql-community-common.x86_64 0:5.6.26-2.el7                                                                            

Replaced:  mariadb.x86_64 1:5.5.41-2.el7_0          mariadb-devel.x86_64 1:5.5.41-2.el7_0   mariadb-libs.x86_64 1:5.5.41-2.el7_0    mariadb-server.x86_64 1:5.5.41-2.el7_0  

所以安装完以后mariadb自动就被替换了,将不再生效。

[[email protected] yl]# rpm -qa |grep mariadb
[[email protected] yl]# 

配置mysql

1、编码

mysql配置文件为/etc/my.cnf

最后加上编码配置

[mysql]
default-character-set =utf8

这里的字符编码必须和/usr/share/mysql/charsets/Index.xml中一致。

2、远程连接设置

把在所有数据库的所有表的所有权限赋值给位于所有IP地址的root用户。

mysql> grant all privileges on *.* to [email protected]‘%‘identified by ‘password‘;

如果是新用户而不是root,则要先新建用户

mysql>create user ‘username‘@‘%‘ identified by ‘password‘;  

此时就可以进行远程连接了。

最后我们介绍下相关文件的默认安装路径

#apache主配置文件
/etc/httpd/conf/httpd.conf
#相关配置 比如vhost文件就可以创建在该目录下
/etc/httpd/conf.d/
#模块配置文件 比如你要开启rewrite模块,可能你就需要到这个目录下面做一些配置了
/etc/httpd/conf.modules.d/
#web可访问目录 网站根目录
/var/www/html
#apache日志文件目录
/var/log/httpd/
时间: 2024-10-25 20:31:32

LINUX centos 7.2/7.3 搭建LANP环境的相关文章

Linux/CentOS各种服务框架的搭建完整流程

在2012年的时候,由于要照应新人对Linux以及相关服务的了解和学习,我特地把当时我们创业项目的全部服务搭建过程写成了一篇文档,能够让他们学习而且有所參照. 以下就以这篇文档为底稿,进行一些改动和敏感信息的删除,分享给大家,希望对大家故意. 说明,下面的Rafael是我的英文名.应用是当前已经改变方向的功夫信,英文直写拼音gongfuxin.本文除了Linux帐号.部分安全的基本配置,还有php/php-fpm/mysql/redis/nginx的安装和配置. 转载请注明出处. 更新记录: 顾

CentOS 6.9 yum方式搭建LNMP环境,并部署Discuz论坛

一.演示环境: IP 安装的程序包 版本 192.168.1.144 nginx(epel源) 1.10.2 php 5.3.3 php-fpm(FastCGI进程管理器) php-mysql(php连接mysql时需要用到的驱动) 192.168.1.145 MySQL-server-5.6.39-1.el6.x86_64.rpm MySQL-client-5.6.39-1.el6.x86_64.rpm MySQL-devel-5.6.39-1.el6.x86_64.rpm MySQL-sha

CentOS使用-记录ContOS 7 搭建Java环境

系统环境:CentOS Linux 7 当前用户:普通用户 安装JDK:jdk-10.0.1_linux-x64_bin.tar.gz 下载地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk10-downloads-4416644.html 由于CentOS 7 内置了OpenJDK,可通过终端执行 java -version验证. 1.查看和卸载内置OepnJDK(普通用户卸载需要先获取ROOT权限) 获取ROOT权限

阿里云 CentOS 6.5 使用XAMPP 搭建LAMP环境

LAMP环境是常见的服务器环境,也是PHP网站常用的服务器环境,很多人喜欢手动配置,但是手动配置LAMP复杂.麻烦,简单一点的话可以使用集成环境.试了下LNMP的集成环境,用不习惯,另外由于本地一直使用XAMPP用的Apache服务器,所以也使用了Linux环境下的xampp,其实还是蛮好用的. 附上xampp下载地址https://www.apachefriends.org/zh_cn/index.html 注意要下载Linux版本的. XAMPP 是一个易于安装且包含 MySQL.PHP 和

ubuntu 上搭建lanp环境

1.安装tasksel sudo apt-get install tasksel 使用tasksel 时只需   sudo tasksel 2.安装lamp sudo tasksel instal lamp-server 打开浏览器输入127.0.0.1 可以看到apache首页 切换到/var/www/html(默认目录)   目录下新建一个test.php文件退出保存,在浏览器中就可以看到其效果 apache修改默认目录路径   /etc /apache2/sites-enabled/000

CentOS 7使用yum快速搭建LAMP环境

1.安装Apache [[email protected] ~]# yum -y install httpd # 开机自启动 [[email protected] ~]# chkconfig httpd on # 启动httpd 服务 [[email protected] ~]# service httpd start ### 安装apache 一些扩展 [email protected] ~]# yum -y install httpd-manual mod_ssl mod_perl mod_

CentOS 6.9编译方式搭建LTMP环境,并部署phpMyAdmin数据库管理工具

一.演示环境: IP 安装的程序包 版本 下载地址 192.168.199.7 Tengine tengine-2.2.2.tar.gz http://tengine.taobao.org/download_cn.html PHP php-7.0.29.tar.gz http://www.php.net/downloads.php phpMyAdmin phpMyAdmin-4.8.0.1-all-languages.zip https://www.phpmyadmin.net/download

freescale-sdk linux移植一搭建编译环境脚本host-prepare.sh分析

接下来使用自己的课外休息时间,对基于PowerPC架构freescale-sdk,进行linux移植和分析.主要参考官方文档freescale linux sdk START_HERE.html,首先对搭建编译环境脚本host-prepare.sh分析.在移植系统之前,需要搭建编译环境,安装必要的包,为后期编译系统做准备.很多人看到脚本就头疼,下面是我的分析过程,分析不好的地方可以在下面留言,一起讨论. 一.搭建编译环境脚本分析./scripts/host-prepare.sh [email p

windows7 64位系统安装VMware Centos 64位系统搭建开发环境

一.概述 windows是我们最常用的工作系统,Linux开发很多人通常是在windows下安装虚拟机,然后在虚拟机中安装Linux.本文主要记录在搭建开发环境的过程中遇到的问题以及解决方法. 博主所用环境: 电脑:带无线上网的笔记本 主机操作系统:Windows 7 Ultimate, 64-bit 6.1.7601, Service Pack 1 VMware:VMware? Workstation 9.0.0 build-812388 Linux:CentOS 6.4(Final) 64-