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

餐饮连锁企业网站建设方案用网站源码怎么做网站

餐饮连锁企业网站建设方案,用网站源码怎么做网站,心悦dnf免做卡网站,怎么搭建一个简单的网站在Centos7上部署OnlyOffice编译结果 此处将尝试将OnlyOffice验证#xff08;一#xff09;DocumentServer编译验证的结果部署到Centos7上。并且使用其它服务器现有的RabbitMq和Mysql。 安装Nginx 先安装Nginx需要的依赖环境#xff1a; yum install openssl* -y yum insta…在Centos7上部署OnlyOffice编译结果 此处将尝试将OnlyOffice验证一DocumentServer编译验证的结果部署到Centos7上。并且使用其它服务器现有的RabbitMq和Mysql。 安装Nginx 先安装Nginx需要的依赖环境 yum install openssl* -y yum install ncurses-devel -y先下载Nginx资源包 [roottest nginx]# pwd /usr/local/nginx [roottest nginx]# ll 总用量 1052 -rw-r--r--. 1 root root 1073948 2月 24 09:25 nginx-1.22.1.tar.gz [roottest nginx]# tar -zxvf nginx-1.22.1.tar.gz解压后目录结构如下目录为/usr/local/nginx/nginx-1.22.1 [roottest nginx]# ll 总用量 1052 drwxr-xr-x. 8 1001 1001 158 10月 19 16:02 nginx-1.22.1 -rw-r--r--. 1 root root 1073948 2月 24 09:25 nginx-1.22.1.tar.gz [roottest nginx]# cd nginx-1.22.1 [roottest nginx-1.22.1]# ll 总用量 804 drwxr-xr-x. 6 1001 1001 4096 2月 24 09:34 auto -rw-r--r--. 1 1001 1001 317399 10月 19 16:02 CHANGES -rw-r--r--. 1 1001 1001 485035 10月 19 16:02 CHANGES.ru drwxr-xr-x. 2 1001 1001 168 2月 24 09:34 conf -rwxr-xr-x. 1 1001 1001 2590 10月 19 16:02 configure drwxr-xr-x. 4 1001 1001 72 2月 24 09:34 contrib drwxr-xr-x. 2 1001 1001 40 2月 24 09:34 html -rw-r--r--. 1 1001 1001 1397 10月 19 16:02 LICENSE drwxr-xr-x. 2 1001 1001 21 2月 24 09:34 man -rw-r--r--. 1 1001 1001 49 10月 19 16:02 README drwxr-xr-x. 9 1001 1001 91 2月 24 09:34 src开始安装 ./configure make切换目录到/usr/local/nginx如果没有新的文件回到安装目录再执行一下 make install最终目录结构应该和下面差不多 [roottest nginx-1.22.1]# pwd /usr/local/nginx/nginx-1.22.1 [roottest nginx-1.22.1]# cd ../ [roottest nginx]# ll 总用量 1056 drwxr-xr-x. 2 root root 4096 2月 24 09:45 conf drwxr-xr-x. 2 root root 40 2月 24 09:45 html drwxr-xr-x. 2 root root 6 2月 24 09:45 logs drwxr-xr-x. 9 1001 1001 186 2月 24 09:43 nginx-1.22.1 -rw-r--r--. 1 root root 1073948 2月 24 09:25 nginx-1.22.1.tar.gz drwxr-xr-x. 2 root root 19 2月 24 09:45 sbin切换目录到sbin启动Nginx [roottest nginx]# cd sbin/ [roottest sbin]# pwd /usr/local/nginx/sbin [roottest sbin]# ./nginx [roottest sbin]#当前虚拟机配的IP是192.168.95.131访问http://192.168.95.131:80/端口可以不用写   配置自启服务此处不重要可以略过。这里先关闭Nginx: [roottest sbin]# pwd /usr/local/nginx/sbin [roottest sbin]# ./nginx -s stop [roottest sbin]# 创建一个系统服务配置文件 [roottest sbin]# pwd /usr/local/nginx/sbin [roottest sbin]# vim nginx.service [roottest sbin]# cat nginx.service [Unit] Descriptionnginx service Afternetwork.target[Service] Typeforking ExecStart/usr/local/nginx/sbin/nginx ExecReload/usr/local/nginx/sbin/nginx -s reload ExecStop/usr/local/nginx/sbin/nginx -s stop WorkingDirectory/usr/local/nginx/sbin PrivateTmptrue[Install] WantedBymulti-user.target创建软连接随后重新加载服务配置 [roottest sbin]# ln -s /usr/local/nginx/sbin/nginx.service /usr/lib/systemd/system/nginx.service [roottest sbin]# systemctl daemon-reload接下来使用systemctl start nginx来启动Nginx [roottest sbin]# systemctl start nginx [roottest sbin]# systemctl status nginx ● nginx.service - nginx serviceLoaded: loaded (/usr/local/nginx/sbin/nginx.service; disabled; vendor preset: disabled)Active: active (running) since 五 2023-02-24 10:18:52 CST; 1s agoProcess: 35348 ExecStart/usr/local/nginx/sbin/nginx (codeexited, status0/SUCCESS)Main PID: 35349 (nginx)Memory: 952.0KCGroup: /system.slice/nginx.service├─35349 nginx: master process /usr/local/nginx/sbin/nginx└─35350 nginx: worker process2月 24 10:18:52 test systemd[1]: Starting nginx service... 2月 24 10:18:52 test systemd[1]: Started nginx service.配置自启重启服务器验证即可 [roottest sbin]# systemctl enable nginx Created symlink from /etc/systemd/system/multi-user.target.wants/nginx.service to /usr/local/nginx/sbin/nginx.service. Created symlink from /etc/systemd/system/nginx.service to /usr/local/nginx/sbin/nginx.service.资源准备 Ubuntu虚拟机资源准备 此处先将安装资源准备一下将之前编译好的documentserver打个压缩包。然后将资源传到Centos7上。 roott16:/opt/build_master/build_tools/out/linux_64/onlyoffice# tar -zcvf documentserver.tar.gz documentserver roott16:/opt/build_master/build_tools/out/linux_64/onlyoffice# pwd /opt/build_master/build_tools/out/linux_64/onlyoffice roott16:/opt/build_master/build_tools/out/linux_64/onlyoffice# ll 总用量 822728 drwxr-xr-x 5 root root 4096 2月 24 10:35 ./ drwxr-xr-x 3 root root 4096 2月 19 23:26 ../ drwxr-xr-x 10 root root 4096 2月 23 14:00 documentserver/ drwxr-xr-x 3 root root 4096 2月 23 13:56 documentserver-example/ drwxr-xr-x 3 root root 4096 2月 19 23:27 documentserver-snap/ -rw-r--r-- 1 root root 842447109 2月 24 10:36 documentserver.tar.gz将压缩文件传到目标Centos7上 roott16:/opt/build_master/build_tools/out/linux_64/onlyoffice# scp documentserver.tar.gz root192.168.95.131:/usr/local/nginx/html The authenticity of host 192.168.95.131 (192.168.95.131) cant be established. ECDSA key fingerprint is SHA256:P8yATBEzmZX9B7VcnUT6yYWDksUcNMdapeO4alDUYSw. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 192.168.95.131 (ECDSA) to the list of known hosts. root192.168.95.131s password: documentserver.tar.gz 100% 803MB 160.7MB/s 00:05 roott16:/opt/build_master/build_tools/out/linux_64/onlyoffice# Centos7虚拟机资源准备 在上一步将安装资源打压缩包传到了Centos7中的/usr/local/nginx/html目录 [roottest html]# pwd /usr/local/nginx/html [roottest html]# ll -h 总用量 804M -rw-r--r--. 1 root root 497 2月 24 09:45 50x.html -rw-r--r--. 1 root root 804M 2月 24 10:40 documentserver.tar.gz -rw-r--r--. 1 root root 615 2月 24 09:45 index.html解压资源 [roottest html]# tar -zxvf documentserver.tar.gz [roottest html]# pwd /usr/local/nginx/html [roottest html]# ll 总用量 822712 -rw-r--r--. 1 root root 497 2月 24 09:45 50x.html drwxr-xr-x. 10 root root 147 2月 23 14:00 documentserver -rw-r--r--. 1 root root 842447109 2月 24 10:40 documentserver.tar.gz -rw-r--r--. 1 root root 615 2月 24 09:45 index.html修改启动配置切换目录到/usr/local/nginx/html/documentserver/server/Common/config。修改development-linux.json配置文件此处只保留了修改的配置内容。分别是RabbitMQ连接、欢迎页、Mysql数据库连接和文件上传大小。 {rabbitmq: {url: amqp://test:123456192.168.95.130:5672}, services: {CoAuthoring: {server: {static_content: {/welcome: {path: ../../server/welcome}}},sql: {type: mysql,dbHost: 192.168.95.130,dbPort: 3306,dbName: onlyoffice,dbUser: root,dbPass: 123456} }},FileConverter: {converter: {maxDownloadBytes: 524288000}} }※RabbitMQ注意默认用户只能本机访问注意提前配置好用户权限   ※Mysql表创建脚本在目录/usr/local/nginx/html/documentserver/server/schema/mysql中提前创建数据库执行createdb.sql脚本 [roottest mysql]# pwd /usr/local/nginx/html/documentserver/server/schema/mysql [roottest mysql]# ll 总用量 12 -rwxrwxrwx. 1 root root 3125 2月 19 19:44 createdb.sql -rwxrwxrwx. 1 root root 35 2月 19 19:44 removedb.sql -rwxrwxrwx. 1 root root 146 2月 19 19:44 removetbl.sql drwxrwxrwx. 2 root root 98 2月 19 19:44 upgrade功能测试验证 启动转换服务 [roottest FileConverter]# pwd /usr/local/nginx/html/documentserver/server/FileConverter [roottest FileConverter]# LD_LIBRARY_PATH$PWD/bin \NODE_ENVdevelopment-linux \NODE_CONFIG_DIR$PWD/../Common/config \./converter [2023-02-24T14:21:50.564] [WARN] [localhost] [docId] [userId] nodeJS - update cluster with 1 workers [2023-02-24T14:21:50.572] [WARN] [localhost] [docId] [userId] nodeJS - worker 112277 started. [2023-02-24T14:21:50.575] [WARN] [localhost] [docId] [userId] nodeJS - update cluster with 1 workers [2023-02-24T14:21:51.170] [DEBUG] [localhost] [docId] [userId] nodeJS - [AMQP] connected启动文档服务 [roottest DocService]# NODE_ENVdevelopment-linux \NODE_CONFIG_DIR$PWD/../Common/config \./docservice [2023-02-24T14:22:26.774] [WARN] [localhost] [docId] [userId] nodeJS - Express server starting... [2023-02-24T14:22:26.775] [WARN] [localhost] [docId] [userId] nodeJS - Set services.CoAuthoring.token.enable.browser, services.CoAuthoring.token.enable.request.inbox, services.CoAuthoring.token.enable.request.outbox in the Document Server config to prevent an unauthorized access to your documents and the substitution of important parameters in ONLYOFFICE Document Server requests. [2023-02-24T14:22:26.775] [INFO] [localhost] [docId] [userId] nodeJS - End updateLicense [2023-02-24T14:22:26.777] [WARN] [localhost] [docId] [userId] nodeJS - Failed to subscribe to plugin folder updates. When changing the list of plugins, you must restart the server. https://nodejs.org/docs/latest/api/fs.html#fs_availability [2023-02-24T14:22:26.780] [INFO] [localhost] [docId] [userId] nodeJS - End updateLicense [2023-02-24T14:22:26.840] [DEBUG] [localhost] [docId] [userId] nodeJS - [AMQP] connected [2023-02-24T14:22:26.901] [DEBUG] [localhost] [docId] [userId] nodeJS - [AMQP] connected [2023-02-24T14:22:26.922] [INFO] [localhost] [docId] [userId] nodeJS - Start callbackFunction [2023-02-24T14:22:26.928] [WARN] [localhost] [docId] [userId] nodeJS - Express server listening on port 8000 in development-linux mode. Version: 7.3.2. Build: 0访问欢迎页默认端口是8000   接下来测试文档是否可以正常加载   注意此处报错跟Nginx没有关系目前来看Nginx并不是必须的。怀疑只是在Docker部署的时候占一个前台进程。目前是转换服务报异常提示缺少动态库。   经排查确实没有所以打算升级动态库参考下面三个连接升级动态库主要参考第一个升级动态库后最好重启一下。 编译动态库看这里 https://www.jianshu.com/p/cedbdf0b6bca下载资源慢看这里 https://blog.csdn.net/qq_29695701/article/details/115182856升级动态库补充说明 https://blog.csdn.net/davidhopper/article/details/79681695 升级动态库后重新启动服务看看能不能正常加载。目前来看一切正常   虽然界面加载看起来没有问题其实还是有问题的。比如文件修改后保存失败调用文档格式转换失败。需要补充初始化的操作切换目录回到解压后的根目录然后执行初始化命令   当前目录结构 [roottest documentserver]# pwd /usr/local/nginx/html/documentserver [roottest documentserver]# ll 总用量 20 drwxr-xr-x. 39 root root 4096 2月 23 13:56 core-fonts drwxr-xr-x. 50 root root 4096 2月 23 13:56 dictionaries drwxr-xr-x. 4 root root 31 2月 23 13:56 document-templates drwxr-xr-x. 2 root root 8192 2月 27 09:04 fonts drwxr-xr-x. 7 root root 68 2月 23 13:53 sdkjs drwxr-xr-x. 14 root root 234 2月 23 13:56 sdkjs-plugins drwxr-xr-x. 12 root root 199 2月 23 14:04 server drwxrwxrwx. 4 root root 32 2月 19 22:58 web-appsLD_LIBRARY_PATH${PWD}/server/FileConverter/bin server/tools/allfontsgen \--input${PWD}/core-fonts \--allfonts-web${PWD}/sdkjs/common/AllFonts.js \--allfonts${PWD}/server/FileConverter/bin/AllFonts.js \--images${PWD}/sdkjs/common/Images \--selection${PWD}/server/FileConverter/bin/font_selection.bin \--output-webfonts \--use-systemtrueLD_LIBRARY_PATH${PWD}/server/FileConverter/bin server/tools/allthemesgen \--converter-dir${PWD}/server/FileConverter/bin\--src${PWD}/sdkjs/slide/themes\--output${PWD}/sdkjs/common/Images随后重新启动这时服务就正常了。文件保存和文档格式转换就可以正常使用了。Ubuntu部署顺便也验证了验证版本16.04和20.04跟Centos7的区别就是不用更新动态库部署起来更方便。 配置Nginx 到这步其实可配可不配配了Nginx就是代理了8000端口让你访问的时候直接调80端口。经验证编译结果其实可以不用放在Nginx目录下。因为除了接口转发OnlyOffice服务跟Nginx并没有设么关系。   首先切换目录到Nginx配置文件的目录中/usr/local/nginx/conf这里我创建了一个目录为custom用来存放配置。 [roottest conf]# pwd /usr/local/nginx/conf [roottest conf]# ll 总用量 68 drwxr-xr-x. 2 root root 34 2月 24 11:09 custom -rw-r--r--. 1 root root 1077 2月 24 09:45 fastcgi.conf -rw-r--r--. 1 root root 1077 2月 24 09:45 fastcgi.conf.default -rw-r--r--. 1 root root 1007 2月 24 09:45 fastcgi_params -rw-r--r--. 1 root root 1007 2月 24 09:45 fastcgi_params.default -rw-r--r--. 1 root root 2837 2月 24 09:45 koi-utf -rw-r--r--. 1 root root 2223 2月 24 09:45 koi-win -rw-r--r--. 1 root root 5349 2月 24 09:45 mime.types -rw-r--r--. 1 root root 5349 2月 24 09:45 mime.types.default -rw-r--r--. 1 root root 2710 2月 24 11:04 nginx.conf -rw-r--r--. 1 root root 2656 2月 24 09:45 nginx.conf.default -rw-r--r--. 1 root root 636 2月 24 09:45 scgi_params -rw-r--r--. 1 root root 636 2月 24 09:45 scgi_params.default -rw-r--r--. 1 root root 664 2月 24 09:45 uwsgi_params -rw-r--r--. 1 root root 664 2月 24 09:45 uwsgi_params.default -rw-r--r--. 1 root root 3610 2月 24 09:45 win-utf切换目录到custom中创建名为*.conf的配置文件 [roottest conf]# cd custom/ [roottest custom]# ll 总用量 4 -rw-r--r--. 1 root root 763 2月 24 11:09 document_server.conf配置内容如下其实就是官网提供的配置 map $http_host $this_host { $host;default $http_host; } map $http_x_forwarded_proto $the_scheme {default $http_x_forwarded_proto; $scheme; } map $http_x_forwarded_host $the_host {default $http_x_forwarded_host; $this_host; } map $http_upgrade $proxy_connection {default upgrade; close; } proxy_set_header Host $http_host; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $proxy_connection; proxy_set_header X-Forwarded-Host $the_host; proxy_set_header X-Forwarded-Proto $the_scheme; server {listen 0.0.0.0:80;listen [::]:80 default_server;server_tokens off;rewrite ^\/OfficeWeb(\/apps\/.*)$ /web-apps$1 redirect;location / {proxy_pass http://localhost:8000;proxy_http_version 1.1;} }切换目录回到/usr/local/nginx/conf修改下nginx.conf配置文件添加如下配置 include /usr/local/nginx/conf/custom/*.conf;最后重新加载Nginx配置使配置立即生效 [roottest conf]# systemctl reload nginx最终结果就是192.168.95.131:8000和192.168.95.131:80都可以正常访问。
http://www.hkea.cn/news/14333183/

相关文章:

  • 西安做网站的公司哪家好wordpress 数据库脚本
  • 焦作网站建设哪家公司好购物网站成功案例
  • 有哪些好的模板网站做网站坚持多少年会有起色
  • 宁波网站建设制作公司排名网站开发成本最低多少钱
  • 网站访问统计js代码设计师网站外网
  • 备案时网站名称可以重复吗绍兴seo排名收费
  • 朝阳住房和城乡建设官方网站wordpress内存缓存
  • 上海网站建设咨询android studio开发app实例
  • 广德网站建设网站开发工具简述
  • 网站建设计划书实验总结要怎样创造网站
  • 建设工程竣工备案网站网站开发公司的销售方式
  • 网站建设带后台带微商城化州网站建设
  • 高度重视机关门户网站建设做网站和app需要多久
  • 装修网站建设优缺点学做ppt的网站有哪些
  • 门户网站建设服务收费农业网站电子商务平台建设方案
  • 东莞网站优化软件wordpress主题模版修改
  • 国内做视频的网站有哪些wordpress页面下
  • 精品网站开发公司wordpress 有评论时邮箱设置
  • 网站建设解决恩问题山西省建设厅招标网站
  • 网站建设推广软文案例做网站下载那个数据库好
  • 做门票的网站中国航天空间站最新消息
  • 中国站长之家哪个公司网站设计好
  • 东台做网站莆田专业建站公司
  • 制作网站的难度长沙网站建设论坛
  • 免费的企业建站cmshtml网页设计实验总结
  • 上海设计网站设计做新闻源网站采集站赚钱
  • 企业网站建设的重要性及意义在线阅读 wordpress主题
  • 建筑行业招聘网站推荐php企业网站后台管理系统
  • 爱奇艺的网站是用什么做的免费seo关键词优化方案
  • 用AIDE怎么建设网站网站做管制户外刀具