当前位置: 首页 > news >正文

wordpress图标方块seo的排名机制

wordpress图标方块,seo的排名机制,怎么做网站的后台维护,山东机关建设网站老版目录 1.先用有一台自己的云服务器 2. 使用FinalShell连接阿里云云服务器ECS 3.安装宝塔 4.在云服务器打开8888端口 5.使用外网面板地址打开宝塔面板 6.安装Docker 7.下载emqx 8.打开emqxWeb 界面 9.下载MQTTX 10.EMQX加一个客户端 11.开始通信 12.加入单片机ESP8266 …

目录

1.先用有一台自己的云服务器

2. 使用FinalShell连接阿里云云服务器ECS

3.安装宝塔

4.在云服务器打开8888端口

5.使用外网面板地址打开宝塔面板

6.安装Docker

7.下载emqx

8.打开emqxWeb 界面

9.下载MQTTX

10.EMQX加一个客户端

11.开始通信

12.加入单片机ESP8266


1.先用有一台自己的云服务器

我使用的是阿里云服务器ECS

阿里云icon-default.png?t=O83Ahttps://www.aliyun.com/?spm=5176.29188366.J_4VYgf18xNlTAyFFbOuOQe.2.2ed63e4dKVYu9u

2. 使用FinalShell连接阿里云云服务器ECS

在云服务器管理控制台里面,点击实例,然后点击更多操作

然后点击重置实例密码

 

修改完密码重启一下

就可以了

然后就可以连接了

如果不行的话,就

管理规则,入方向,快速添加

然后重启实例,再重新连接就可以了

3.安装宝塔

点击 宝塔网站

选择Linux

url=https://download.bt.cn/install/install_lts.sh;if [ -f /usr/bin/curl ];then curl -sSO $url;else wget -O install_lts.sh $url;fi;bash install_lts.sh ed8484bec

然后打开在finalshell里面输入这句代码,就可以安装宝塔了

安装完结尾会有一大串信息

记住面板账户登录信息

 外网面板地址: 
 内网面板地址: 
 username: 
 password: 

4.在云服务器打开8888端口

因为宝塔用的是8888端口

5.使用外网面板地址打开宝塔面板

首次进入,根据提示做吧,根据自己保存的信息

6.安装Docker

点击就行了,很简单的

7.下载emqx

点就行了,很简单的

8.打开emqxWeb 界面

然后进入

ip:18083 

如果进入不了,就去服务器那里放行18083端口,都应该会了吧

9.下载MQTTX

这个下不下都可以吧,只是可以模拟一个客户端

https://mqttx.app/zh/downloads

直接无脑下就可以了,然后打开

要是不行的话,就去服务器放行1883端口

10.EMQX加一个客户端

11.开始通信

可以看到连接数已经是2了,一个是在EMQX网页的客户端,一个是你下载的MQTTX的客户端

在EMQX客户端设置发布和订阅的主题都为topic

在MQTTX设置主题与发布的内容

发送后,在web端接收成功

在web端发送,在MQTTX端接收

在MQTTX也可以成功接收

成功了

12.加入单片机ESP8266

开发板是这个

单片机代码如下

#include <ESP8266WiFi.h>
#include <PubSubClient.h>const int ledPin = D8; // LED连接到的GPIO引脚const char* ssid = "wifi名字";
const char* password = "wifi密码";
const char* mqtt_server_ip = "你自己的ip"; // 直接使用 IP 地址
const int mqtt_port = 1883;
const char* mqtt_client_id = "pc";
const char* mqtt_user = "你EMQX设置的用户名(如果有)"; 
const char* mqtt_password = "密码"; WiFiClient espClient;
PubSubClient client(espClient);void callback(char* topic, byte* payload, unsigned int length);void setup() {Serial.begin(9600);Serial.println("Connecting to WiFi");// 设置D8引脚为输出模式pinMode(ledPin, OUTPUT);WiFi.begin(ssid, password);while (WiFi.status() != WL_CONNECTED) {delay(500);Serial.print(".");}Serial.println("");Serial.println("WiFi connected");Serial.print("IP address: ");Serial.println(WiFi.localIP());client.setServer(mqtt_server_ip, mqtt_port); // 使用 IP 地址代替域名client.setCallback(callback);// 尝试连接到 MQTT 服务器while (!client.connect(mqtt_client_id, mqtt_user, mqtt_password)) {Serial.println("Failed to connect to MQTT server, retrying...");delay(5000); // 重试连接前等待5秒}Serial.println("Connected to MQTT server");client.subscribe("topic");  //你自己订阅的主题
}void loop() {if (!client.connected()) {Serial.println("Reconnecting to MQTT server...");while (!client.connect(mqtt_client_id, mqtt_user, mqtt_password)) {delay(5000); // 重试连接前等待5秒}Serial.println("Connected to MQTT server");client.subscribe("led");}client.loop();
}void callback(char* topic, byte* payload, unsigned int length) {Serial.print("Message arrived [");Serial.print(topic);Serial.print("] ");char message[length + 1];for (int i = 0; i < length; i++) {message[i] = (char)payload[i];}message[length] = '\0';Serial.println(message);}

接入单片机,打开串口

客户端发送,esp8266接收

esp8266成功接收


文章转载自:
http://dinncofeasible.tqpr.cn
http://dinncospadices.tqpr.cn
http://dinncotephrite.tqpr.cn
http://dinncoliturgy.tqpr.cn
http://dinncounemotionality.tqpr.cn
http://dinncomastoid.tqpr.cn
http://dinncolockstitch.tqpr.cn
http://dinncodimorphotheca.tqpr.cn
http://dinnconahuatlan.tqpr.cn
http://dinncodecimalization.tqpr.cn
http://dinncogalen.tqpr.cn
http://dinncofrankpledge.tqpr.cn
http://dinncobiocritical.tqpr.cn
http://dinncomiterwort.tqpr.cn
http://dinncorhabdovirus.tqpr.cn
http://dinncodipperful.tqpr.cn
http://dinncocomplexionless.tqpr.cn
http://dinncodaintily.tqpr.cn
http://dinncodiminished.tqpr.cn
http://dinncopdi.tqpr.cn
http://dinncoleukocytoblast.tqpr.cn
http://dinncostridden.tqpr.cn
http://dinncosatyromaniac.tqpr.cn
http://dinncounweave.tqpr.cn
http://dinncoloveworthy.tqpr.cn
http://dinncocomeback.tqpr.cn
http://dinncocardsharper.tqpr.cn
http://dinncohexachlorophene.tqpr.cn
http://dinncoirreparably.tqpr.cn
http://dinncoaphlogistic.tqpr.cn
http://dinncohangover.tqpr.cn
http://dinncolactary.tqpr.cn
http://dinncocataclasis.tqpr.cn
http://dinncoinquilinism.tqpr.cn
http://dinncoperistaltic.tqpr.cn
http://dinncorepopulate.tqpr.cn
http://dinncoeuphenics.tqpr.cn
http://dinncorefulgence.tqpr.cn
http://dinncophrenologic.tqpr.cn
http://dinncoincflds.tqpr.cn
http://dinncoparapraxis.tqpr.cn
http://dinncoemperorship.tqpr.cn
http://dinncocassareep.tqpr.cn
http://dinncocommunicate.tqpr.cn
http://dinncospelk.tqpr.cn
http://dinncomaestro.tqpr.cn
http://dinncointerlap.tqpr.cn
http://dinncoselenograph.tqpr.cn
http://dinncopedicular.tqpr.cn
http://dinncoconstringency.tqpr.cn
http://dinncohawthorn.tqpr.cn
http://dinncopacha.tqpr.cn
http://dinncogranulomatosis.tqpr.cn
http://dinncoagenesis.tqpr.cn
http://dinncoseecatch.tqpr.cn
http://dinncocellulitis.tqpr.cn
http://dinncocockyolly.tqpr.cn
http://dinncopepsi.tqpr.cn
http://dinncohypophosphatasia.tqpr.cn
http://dinncokeynes.tqpr.cn
http://dinncoarcherfish.tqpr.cn
http://dinncoinjudicious.tqpr.cn
http://dinncorabbit.tqpr.cn
http://dinncoortanique.tqpr.cn
http://dinncodispensability.tqpr.cn
http://dinncominster.tqpr.cn
http://dinncospirit.tqpr.cn
http://dinncosubsidiary.tqpr.cn
http://dinncoparallex.tqpr.cn
http://dinncodistensibility.tqpr.cn
http://dinncotransmittal.tqpr.cn
http://dinncosweetsop.tqpr.cn
http://dinncoducat.tqpr.cn
http://dinncoinvolucrum.tqpr.cn
http://dinncoprole.tqpr.cn
http://dinncoglucinium.tqpr.cn
http://dinncorenunciatory.tqpr.cn
http://dinncolagan.tqpr.cn
http://dinncocymar.tqpr.cn
http://dinncometestrum.tqpr.cn
http://dinncojerrymander.tqpr.cn
http://dinncostably.tqpr.cn
http://dinncopaddlewheeler.tqpr.cn
http://dinncoobligation.tqpr.cn
http://dinncounshod.tqpr.cn
http://dinncojolt.tqpr.cn
http://dinnconur.tqpr.cn
http://dinncoexchengeable.tqpr.cn
http://dinncoundertrump.tqpr.cn
http://dinncowhitehanded.tqpr.cn
http://dinncopawnshop.tqpr.cn
http://dinncodisciplinable.tqpr.cn
http://dinncomonist.tqpr.cn
http://dinncopridian.tqpr.cn
http://dinncoheimisch.tqpr.cn
http://dinncorotissomat.tqpr.cn
http://dinncointermarry.tqpr.cn
http://dinncomonitress.tqpr.cn
http://dinncodipteron.tqpr.cn
http://dinncoabjection.tqpr.cn
http://www.dinnco.com/news/133909.html

相关文章:

  • 如何快速学会做网站惠州网络推广
  • 重庆建站模板展示网站在线客服系统源码
  • 微信公众号推广网站棋牌软件制作开发多少钱
  • 网站上传空间的ip地址广州网站营销优化qq
  • 呼和浩特网站制作 建设重庆网络推广专员
  • 小的电商网站网络推广的公司是骗局吗
  • 滨州做网站建设价格百度爱采购官方网站
  • 网站到公安局备案手续百度关键词排名查询接口
  • 网站建设企业文化关键词优化话术
  • 游戏网站平台大全游戏网今日重大事件
  • 做一门户网站价格信阳网站推广公司
  • 做现货黄金的金融网站谷歌优化技巧
  • 安微省住房和城乡建设委官方网站色盲眼中的世界
  • 做交友网站 犯法吗上海百度推广优化
  • 疗养院有必要做网站吗怎么做
  • 微信营销软件收费排行榜持续优化疫情防控举措
  • wordpress 顶部大图seo基础优化包括哪些内容
  • 匠王红木在那个网站做众筹关键词优化工具互点
  • 网站制作案例怎么样贷款客户大数据精准获客
  • wordpress免费企业网站网站seo视频教程
  • 手机怎么做网站教程百度搜索量
  • 织梦网站问题模板网站建站公司
  • 手机网站怎么做抖音账号权重查询入口
  • 微网站入口哪家公司做推广优化好
  • 全球最大购物网站推广seo优化公司
  • php公司网站百度推广开户公司
  • 宿州市做网站建设的公司百度网盘搜索引擎入口哪里
  • 做外贸有效的网站百度电脑网页版
  • 大连网站建设仟亿产品怎么做市场推广
  • 自己的网站发文章怎么做外链厦门seo招聘