学习笔记:云计算第17天

5/7 周五,个人笔记

换成静态网络不通的问题

ping www.baidu.com
network is unreachable (网络不可达)
将你的网关地址加入到你的网卡配置文件中并且重启
vi /etc/sysconfig/network-scripts/ifcfg-eth0
加入GATEWAY=x.x.x.1 (虚拟机网关是x.x.x.2)
systemctl restart network
网络及解析OK yum源好使了

按pid查看进程

lsof -p pid

Web服务器

目前最流行的三个Web服务器是Apache、Nginx、IIS。
最重要的是环境
Web中间件——常见的web中间件也叫web容器:
Php的中间件:php-fpm(php端口9000)
Java的中间件:(tomcat端口8080.并发量到150就不行了)、jboss、weblogic
Python:uwsgi(默认端口5000)

部署博客系统

安装基本环境:先清空tmp把wordpress-4.7.2-zh_CN包上传到/tmp内(使用rz命令)

#yum -y install mariadb mariadb-server mariadb-libs php php-mysql php-gd php-fpm php-cli gd httpd	#mariadb的客户端和服务端,一些中间件,和web服务httpd

[root@bogon tmp]# systemctl restart mariadb		
[root@bogon tmp]# systemctl restart httpd		#重启httpd服务和mariadb
[root@bogon tmp]# mysqladmin -uroot password "123"		#设置数据库的初始密码为123
[root@bogon tmp]# mysql -uroot -p123			#进入数据库
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 3
Server version: 5.5.68-MariaDB MariaDB Server

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

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

MariaDB [(none)]> create database feng;		#创建一个名为feng的数据库
Query OK, 1 row affected (0.00 sec)		#这里是ok才成功
MariaDB [(none)]> exit		#退出
Bye

[root@bogon tmp]# vi /etc/httpd/conf.d/feng.conf		#这是个空文件,你刚创建的什么数据库名这里写什么
<VirtualHost *:80>		#虚拟主机,监听本机80端口
ServerName www.tianyun.com
        ServerAlias   tianyun.com
        DocumentRoot  /web/feng		#主目录的代码文件放在/web/feng
</VirtualHost>		#这一段是指定主目录
<Directory "/web/feng">		#给这个目录一个权限,允许所有人访问
        Require all  granted
</Directory>
[root@bogon tmp]# mkdir -p /web/feng		#新建一个目录,这个目录要跟刚刚配置文件里的路径写的一样
[root@bogon tmp]# tar xf wordpress-4.7.2-zh_CN.tar.gz 	#解压这个压缩包(自己下载上传的)
[root@bogon tmp]# cp -rf wordpress/* /web/feng/		#导入源码,强制复制到/web/feng/
[root@bogon tmp]# chmod -R 777 /web		#给/web一个777权限,让所有代码可执行
***注意,使用云的话要开安全组***
[root@bogon tmp]# systemctl restart httpd	#重启httpd服务,打开浏览器无痕模式查看会出现wordpress安装界面,然后按步骤操作就可以了。

实验一:
搭建论坛系统,搭建商城系统
只用虚拟机做,做子接口使用2个ip,分别挂系统
虚拟主机( apache )

基于IP的虚拟主机
x.x.x.x:80 web1
x.x.x.x+1:80 web2

实验二: 用云服务器

基于端口的虚拟主机

x.x.x.x:1000  web1
x.x.x.x:2000   web2
vi /etc/httpd/conf/httpd.conf 
加入你监听的端口 42行#vi /etc/ssh/sshd_config42行加入你监听的端口 Linsten:80

端口的范围
1-65535
如果一个端口访问不到,换一个试试

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值