倍加福PMI360D-F130-IE8-V15

倍加福PMI360D-F130-IE8-V15

感应测角系统 PMI360D-F130-IE8-V15
测量范围 0 …360°
模拟量输出 4 mA … 20 mA
可调开关点

通用规格
安装 非齐平
测量范围 360°
旋转速度 max. 100 min-1
额定值
工作电压 18 … 30 V
反极性保护 反极性保护
重复精度 ± 0,25 °
分辨率 0.4°
温度漂移 0,02 ° / °C (-25 °C …70 °C)
空载电流 ≤ 45 mA
工作电压指示灯 绿色 LED
功能性安全相关参数
MTTFd 265 a
任务时间 ™ 20 a
诊断覆盖率 (DC) 0 %
开关输出
输出类型 2 路开关输出,PNP,常开 , 反极性保护 , 短路保护
工作电流 ≤ 100 mA
电压降 ≤ 3 V
短路保护 脉冲式
模拟量输出
输出类型 1 电流输出: 4 … 20 mA
线性度误差 ± 0,6 ° ,(带原装执行器)
负载电阻器 ≤ 400 Ω
遵守标准和指令
符合标准
标准 EN 60947-5-2:2007
IEC 60947-5-2:2007
认证和证书
UL 认证 cULus 认证,一般用途,2 类电源
CCC 认证 额定电压 ≤ 36 V 时,产品不需要 CCC 认证/标记
环境条件
环境温度 -25 … 70 °C (-13 … 158 °F)
存储温度 -40 … 100 °C (-40 … 212 °F)
机械规格
连接类型 5 针 M12 x 1 连接器
外壳材料 PBT
轴直径 max. 27,5 mm 钢
防护等级 IP67
质量 180 g

倍加福PMI360D-F130-IE8-V15
倍加福ML100-8-1000-RT/103/115
倍加福扫码枪 VOS2000-F226R-8MM-S
接近开关NBN25-30GM50-E2
倍加福SC3,5-G-N0

以下是 CentOS 8 一键安装 Nextcloud 和 OnlyOffice 的脚本: ```bash #!/bin/bash # 安装 Nextcloud 和 OnlyOffice # 本脚本仅适用于 CentOS 8 # 安装依赖 dnf install -y epel-release dnf install -y wget unzip nginx mariadb-server php php-fpm php-mysqlnd php-gd php-mbstring php-zip php-intl php-opcache php-xml php-json redis php-pecl-redis # 下载 Nextcloud wget https://download.nextcloud.com/server/releases/latest.zip -O /tmp/nextcloud.zip # 解压 Nextcloud unzip /tmp/nextcloud.zip -d /usr/share/nginx/html/ # 设置权限 chown -R nginx:nginx /usr/share/nginx/html/nextcloud/ # 配置 Nginx cat << EOF > /etc/nginx/conf.d/nextcloud.conf server { listen 80; server_name your.domain.com; add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;"; fastcgi_hide_header X-Powered-By; root /usr/share/nginx/html/nextcloud; location / { rewrite ^ /index.php$request_uri; } location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ { deny all; } location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) { deny all; } location ~ ^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+)\.php(?:$|/) { fastcgi_split_path_info ^(.+?\.php)(/.*)$; set $path_info $fastcgi_path_info; try_files $fastcgi_script_name =404; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $path_info; fastcgi_param HTTPS on; fastcgi_param modHeadersAvailable true; fastcgi_param front_controller_active true; fastcgi_pass unix:/run/php-fpm/www.sock; fastcgi_intercept_errors on; fastcgi_request_buffering off; fastcgi_read_timeout 300; } location ~ ^/(?:updater|ocs-provider)(?:$|/) { try_files $uri/ =404; index index.php; } location ~ \.(?:css|js|woff2?|svg|gif|png|html|ttf|ico|jpg|jpeg)$ { try_files $uri /index.php$request_uri; access_log off; expires 360d; add_header Cache-Control "public, max-age=31536000, immutable"; add_header Pragma public; add_header ETag ""; } location ~ \.(?:manifest|appcache|html|xml|json)$ { add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0"; add_header Pragma no-cache; } location ~ /\. { deny all; access_log off; log_not_found off; } } EOF # 重启 Nginx systemctl restart nginx # 配置 MariaDB systemctl enable mariadb systemctl start mariadb mysql -u root << END CREATE USER 'nextcloud'@'localhost' IDENTIFIED BY 'password'; CREATE DATABASE IF NOT EXISTS nextcloud CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci; GRANT ALL PRIVILEGES ON nextcloud.* TO 'nextcloud'@'localhost'; FLUSH PRIVILEGES; END # 下载 OnlyOffice wget https://github.com/ONLYOFFICE/DocumentServer/releases/download/v6.4.2/ONLYOFFICE-documentserver-opensource-src.v6.4.2.tar.gz -O /tmp/onlyoffice.tar.gz # 解压 OnlyOffice tar -zxvf /tmp/onlyoffice.tar.gz -C /usr/share/nginx/html/ # 设置权限 chown -R nginx:nginx /usr/share/nginx/html/documentserver/ # 配置 Nginx cat << EOF > /etc/nginx/conf.d/onlyoffice.conf server { listen 80; server_name document.domain.com; add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;"; add_header X-Content-Type-Options nosniff; add_header X-XSS-Protection "1; mode=block"; add_header X-Robots-Tag none; add_header X-Download-Options noopen; add_header X-Permitted-Cross-Domain-Policies none; add_header Referrer-Policy no-referrer-when-downgrade; add_header Content-Security-Policy "default-src * data: 'unsafe-eval' 'unsafe-inline'"; client_max_body_size 0; location / { proxy_pass https://127.0.0.1:8443; proxy_http_version 1.1; proxy_set_header Upgrade \$http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header Host \$host; proxy_set_header X-Real-IP \$remote_addr; proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto \$scheme; proxy_set_header X-Forwarded-Host \$host; } } EOF # 生成 SSL 证书 dnf install -y certbot python3-certbot-nginx certbot --nginx -d your.domain.com -d document.domain.com # 重启 Nginx systemctl restart nginx ``` 在脚本中,您需要将以下内容替换为您自己的配置: - `your.domain.com`:您的 Nextcloud 域名 - `document.domain.com`:您的 OnlyOffice 域名 - `password`:您的 Nextcloud 数据库密码 安装完成后,您可以通过 `https://your.domain.com` 访问 Nextcloud,通过 `https://document.domain.com` 访问 OnlyOffice。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值