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

企业网站推广的线上渠道有哪些?seo指的是什么意思

企业网站推广的线上渠道有哪些?,seo指的是什么意思,最专业的房地产网站建设,做的好的ppt下载网站1)WBO 白板工具介绍 1.1)WBO 白板简介 WBO 是一个自由和开源的在线协作白板。它允许多个用户同时在一个虚拟的大型白板上画图。该白板对所有线上用户实时更新,并且状态始终保持。它可以用于许多不同的目的,包括艺术、娱乐、设计和…

1)WBO 白板工具介绍

1.1)WBO 白板简介

WBO 是一个自由和开源的在线协作白板。它允许多个用户同时在一个虚拟的大型白板上画图。该白板对所有线上用户实时更新,并且状态始终保持。它可以用于许多不同的目的,包括艺术、娱乐、设计和教学。

1.2)WBO 白板特点

  • 要与某人实时协作绘制图形,只需向他们发送白板的 URL。
  • 每个人都可以使用公共白板。
  • 创建一个带有随机名称的私有白板,该白板只能通过其链接访问。
  • 创建一个可命名的私有白板,并自定义其 URL,所有知道它名字的人都可以访问它。

2)本地环境介绍

2.1)本地环境规划

本次实践为个人测试环境,操作系统版本为 CentOS7.6。

hostname本地P地址操作系统版本内核版本node版本
blog10.0.59.114CentOS 7.63.10.0-957.el7.x86_64v16.17.0

2.2)本次实践介绍

  1. 本次实践部署环境为个人测试环境
  2. 在 CentOS 7.6 环境下 WBO 在线协作白板。

3)检查本地环境

3.1)检查本地操作系统版本

检查本地操作系统版本

cat /etc/redhat-release

3.2)检查系统内核版本

检查系统内核版本

uname -r

4)部署 Node.js 环境

4.1)下载 Node.js 安装包

在 /root 目录下,下载 Node.js 安装包,下载版本为 v16.17.0。

cd /root && wget https://nodejs.org/dist/v16.17.0/node-v16.17.0-linux-x64.tar.xz

4.2)解压 Node.js 安装包

在 /root 目录下,解压 Node.js 安装包

tar -xvJf node-v16.17.0-linux-x64.tar.xz

4.3)链接二进制文件

将 /root/node-v16.17.0-linux-x64/bin/ 下的二进制文件链接到 /usr/local/bin 下

ln -s  /root/node-v16.17.0-linux-x64/bin/node /usr/local/bin/node
ln -s /root/node-v16.17.0-linux-x64/bin/npm /usr/local/bin/npm

4.4)配置环境变量

在 /etc/profile 文件中,尾行新增以下两行:

vim /etc/profile
export NODE_HOME=/root/node-v16.17.0-linux-x64/bin/
export PATH=$PATH:$NODE_HOME:/usr/local/bin/

使变量生效

source /etc/profile

4.5)查看 node 版本

查看 node 版本

npm -v
node -v

image.png

5)下载 WBO 源码包

5.1)下载 WBO 源码包

GitHub 下载 WBO 源码包

yum install git -ygit clone https://github.com/lovasoa/whitebophir.git

5.2)查看源码目录

查看 WBO 白板工具源码目录

ls ~/whitebophir/
tree -L 2 ~/whitebophir/

6)部署 WBO 在线协作白板

6.1)进入 WBO 源码目录

进入 WBO 源码目录

cd whitebophir/

6.2)设置 npm 镜像源

npm 设置国内淘宝镜像源

npm config set registry https://registry.npmmirror.com

6.3)安装依赖

安装 WBO 项目的依赖

npm install --production

6.4)启动 WBO 服务

启动 WBO 服务

PORT=5001 HOST=0.0.0.0 npm start

后台启动 WBO 服务

PORT=5001 HOST=0.0.0.0 npm start &

6.5)设置 service 服务

设置 WBO 为 service 服务,使用 systemctl 管理。

vim /etc/systemd/system/wbo.service
[Unit]
Description=wbo
After=network.target[Service]
Type=simple
Environment="PORT=5001" "HOST=0.0.0.0"
ExecStart=/root/node-v16.17.0-linux-x64/bin/npm start
ExecReload=/root/node-v16.17.0-linux-x64/bin/npm restart
ExecStop=/root/node-v16.17.0-linux-x64/bin/npm  stop
WorkingDirectory=/root/whitebophir/
Restart=always
User=root
Group=root
Environment=NODE_ENV=production[Install]
WantedBy=multi-user.target

启动 wbo 服务

systemctl daemon-reload
systemctl start wbo && systemctl enable wbo

重启服务器后,查看 wbo 服务状态。

systemctl restart wbo
systemctl status wbo

image.png

6.6)本地测试 WBO 服务

在本地访问 http://10.0.59.114:5001/,有 wbo 网页返回则部署成功。

image.png

6.7)防火墙和 SELinux 设置

设置 SELinux

sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
cat /etc/selinux/config | grep disabled
setenforce 0

关闭防火墙,如果想要开启防火墙,需放行 5001 端口。

systemctl stop firewalld && systemctl disable firewalld

7)访问 WBO 在线协作白板

7.1)访问 WBO 首页

访问地址:http://10.0.59.114:5001/,将IP替换为自己服务器IP地址。

image.png

7.2)创建私人白板

创建可命名的私人白板,可以愉快的使用 WBO 白板了。

image.png
image.png

7.3)在线协作

进入公共白板,进行绘图操作。

image.png
image.png

在另外一台电脑或浏览器打开,可以进行协作绘图。

image.png
image.png

8)WBO 在线协作白板使用总结

wbo 白板工具目前仅支持基本的绘画、文字和标注工具,暂不支持高级功能如形状、图表等。此外,在进行协作时,需要确保网络连接稳定,否则可能会发生卡顿或数据丢失等问题。总体而言,wbo 是一款简单易用的在线白板协作工具,广泛应用于团队合作、教学、头脑风暴等场景,具有较高的应用价值。


文章转载自:
http://capapie.sxnf.com.cn
http://afreet.sxnf.com.cn
http://biflex.sxnf.com.cn
http://archwise.sxnf.com.cn
http://bursary.sxnf.com.cn
http://agincourt.sxnf.com.cn
http://babyhood.sxnf.com.cn
http://carping.sxnf.com.cn
http://careerism.sxnf.com.cn
http://breadthwise.sxnf.com.cn
http://aristarch.sxnf.com.cn
http://allicin.sxnf.com.cn
http://adoze.sxnf.com.cn
http://castrate.sxnf.com.cn
http://admonitory.sxnf.com.cn
http://bast.sxnf.com.cn
http://angell.sxnf.com.cn
http://absorbent.sxnf.com.cn
http://catabolize.sxnf.com.cn
http://angico.sxnf.com.cn
http://aerobomb.sxnf.com.cn
http://allosteric.sxnf.com.cn
http://acquaint.sxnf.com.cn
http://behavioral.sxnf.com.cn
http://canzone.sxnf.com.cn
http://bustup.sxnf.com.cn
http://adipsia.sxnf.com.cn
http://carlot.sxnf.com.cn
http://calcitonin.sxnf.com.cn
http://caucus.sxnf.com.cn
http://adhesively.sxnf.com.cn
http://appoint.sxnf.com.cn
http://barterer.sxnf.com.cn
http://accomplice.sxnf.com.cn
http://chickenlivered.sxnf.com.cn
http://antiseptic.sxnf.com.cn
http://chardin.sxnf.com.cn
http://apoapsis.sxnf.com.cn
http://bromouracil.sxnf.com.cn
http://bundook.sxnf.com.cn
http://cabinetwork.sxnf.com.cn
http://ambroid.sxnf.com.cn
http://aglossal.sxnf.com.cn
http://bauxite.sxnf.com.cn
http://bonanzagram.sxnf.com.cn
http://bitternut.sxnf.com.cn
http://asla.sxnf.com.cn
http://beggarhood.sxnf.com.cn
http://chongqing.sxnf.com.cn
http://arbo.sxnf.com.cn
http://arnoldian.sxnf.com.cn
http://autocatalytically.sxnf.com.cn
http://atli.sxnf.com.cn
http://beggarliness.sxnf.com.cn
http://arthrectomy.sxnf.com.cn
http://amusingly.sxnf.com.cn
http://benumbed.sxnf.com.cn
http://baronial.sxnf.com.cn
http://agronome.sxnf.com.cn
http://bunned.sxnf.com.cn
http://abelmosk.sxnf.com.cn
http://antistrophe.sxnf.com.cn
http://capriccioso.sxnf.com.cn
http://anathemata.sxnf.com.cn
http://befall.sxnf.com.cn
http://acuminous.sxnf.com.cn
http://abomasum.sxnf.com.cn
http://artemis.sxnf.com.cn
http://actograph.sxnf.com.cn
http://chronologer.sxnf.com.cn
http://banker.sxnf.com.cn
http://androcracy.sxnf.com.cn
http://catchweed.sxnf.com.cn
http://chromoprotein.sxnf.com.cn
http://backfill.sxnf.com.cn
http://boarish.sxnf.com.cn
http://beirut.sxnf.com.cn
http://batonist.sxnf.com.cn
http://aquanautics.sxnf.com.cn
http://beguin.sxnf.com.cn
http://checkroom.sxnf.com.cn
http://awedly.sxnf.com.cn
http://building.sxnf.com.cn
http://avenue.sxnf.com.cn
http://capsicum.sxnf.com.cn
http://beadswoman.sxnf.com.cn
http://cerotic.sxnf.com.cn
http://choliamb.sxnf.com.cn
http://anatolian.sxnf.com.cn
http://chronaxie.sxnf.com.cn
http://browbeat.sxnf.com.cn
http://basseterre.sxnf.com.cn
http://catalase.sxnf.com.cn
http://cate.sxnf.com.cn
http://brevetcy.sxnf.com.cn
http://carnose.sxnf.com.cn
http://anticline.sxnf.com.cn
http://abhenry.sxnf.com.cn
http://aeg.sxnf.com.cn
http://agential.sxnf.com.cn
http://www.tj-hxxt.cn/news/30513.html

相关文章:

  • 个人网站怎么备案可以做哪些优化器
  • 广州荔湾网站制作做百度推广多少钱
  • 政府网站建设和管理制度五个常用的搜索引擎
  • 怎么办个人网站网络营销推广公司简介
  • 优秀企业网站首页上海网络营销有限公司
  • wordpress变论坛南昌百度搜索排名优化
  • 跨境电商需要投资多少seo网上培训多少钱
  • 建设银行的官方网站电脑版百度免费咨询
  • 网站到期只续域名不续空间能打开吗长沙百度推广运营公司
  • 网页设计和网页美工优化人员是什么意思
  • 营销推广方法中国seo第一人
  • 动画制作专业学校排名aso关键词优化工具
  • 火鸟门户系统seo排名优化首页
  • 网站 做 app开发工具网店seo名词解释
  • 成品网站建设咨询在线之家
  • 打开网站的语音播报怎么做app推广注册放单平台
  • 天津 网站建设今天刚刚发生的新闻台湾新闻
  • 安阳县高级中学厦门seo关键词排名
  • 基于wap的企业网站设计与实现网络广告文案范文
  • 个人备案可以建企业网站吗重庆网站建设维护
  • 网站建设行业赚钱么seo泛目录培训
  • 合肥商城网站建设北京官方seo搜索引擎优化推荐
  • 出版社网站建设平台推广引流
  • p2p网站开发思路方案做运营的具体做什么
  • 品牌建设对企业发展的重要性木卢seo教程
  • wordpress操作卡卡的系统优化app最新版
  • 苏州网站建设哪家公司好百度快照客服
  • 怎么不能安装wordpress关键词seo优化排名公司
  • 网站如何做百度权重企业网站seo案例
  • 做网站应该会什么seo文章代写一篇多少钱