NSetup 一键自动升级安装包制作
admin | nsis | 2016-11-02
雷池 SafeLine WAF 新功能上线:身份认证体验全面升级
admin | 未分类 | 2025-05-22
在当今安全形势愈发严峻的背景下,Web 应用防火墙(WAF)不仅承担着拦截攻击的职责,更逐渐向“可控、安全、可溯源”方向演进。近期,开源 Web 应用防火墙雷池(SafeLine)发布了全新的 身份认证体验功能,为管理和使用者带来了更高的安全性与操作便捷性。
本文将深入解析该新功能的技术背景、实现方式、应用场景及体验优势。
为什么 WAF 需要身份认证机... [阅读全文]
NSetup一键自动升级安装包制作
admin | nsis | 2021-11-19
您是否在为新产品没有安装包或者自动升级而发愁?
是否因为目前已有安装不稳定,不支持美化或者频繁被杀毒误报等而苦恼?
一切交给NSetup解决方案来处理,您专心做产品,专业的人做专业的事,
安装升级这种后勤工作交给NSetup,辅助您一路前行!
NSetup一键自动升级安装包制作
官方网站https://www.nsetup.cn
专业提供美化安装,增量升级,数据统计等... [阅读全文]
cleos system newaccount failed with “to account does not exist” error message
admin | EOS | 2018-06-01
C++
The following accounts need to be created before you can use eosio.system contract via cleos system newaccount to create accounts:
systemAccounts = [
'eosio.bpay',
'eosio.msig',
'eosio.names',
'eosio.ram',
'eosio.ramfee',
'eosio.saving',
'eosio.stake',
'eo... [阅读全文]
“Not producing block because the irreversible block is too old” when start nodeos after changing system time
admin | EOS | 2018-06-01
We added a command line argument (–max-irreversible-block-age) that will cause a node to automatically stop production when the last irreversible block time is older than N seconds, an indication that there are not enough producers confirming blocks for the chain to continue forward. This option prevents producers from ... [阅读全文]
Linux CentOS完全卸载PHP
admin | Php | 2018-05-30
很无语,CentOS居然php版本才5.1.6,很多开源的CMS无法安装。
查看php版本命令:
#php -v
下面的命令是删除不干净的
#yum remove php
因为使用这个命令以后再用
#php -v
还是会看到有版本信息的。。。。。
必须强制删除,使用下面命令查看全部php软件包
#rpm -qa|grep php
提示如下:
#php-pdo-5.1.6-27.el5_5.3
#php-mysql-5.1.6-27.e... [阅读全文]
CentOS yum 安装 PHP 5.6.24
admin | Php | 2018-05-30
如果之前有安装其他版本PHP,请先卸载干净
配置yum源
追加CentOS 6.5的epel及remi源。
# rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
以下是CentOS 7.0的源。
# yum install epel-release
# rpm -ivh http://rpms.famill... [阅读全文]
大白话讲解 节点间数据安全传输神器WireGuard
admin | EOS | 2018-05-24
首先说明一下:今天好多朋友都在问EOS DAWN 4.0怎么还没出来?不是说好5.11号出来吗?对,是5.11号,是BM所在地区的时间,不是北京时间。所以,如果是按惯例的话,应该是明天早上5点-6点之间出来。
现在EOS社区的技术氛围越来越浓,许多大陆候选节点/华人参与的候选节点,都在积极参与社区的技术讨论。安全一直是讨论的重中之重。除了防DDoS,还有如... [阅读全文]
Set contract eosio.system error 3080006: transaction took too long (2)
admin | EOS | 2018-05-21
Shell
$ nodeos --max-transaction-time=1000 --resync
$ cleos create key # for eosio.token
$ cleos wallet import ...
$ cleos create account eosio eosio.token ...
$ cleos set contract eosio.token build/contracts/eosio.token
$ cleos push action eosio.token create '[ "eosio", "10000000000.0000 SYS",... [阅读全文]
EOS Error 3080006: transaction took too long
admin | EOS | 2018-05-17
Shell
cd eos/build
make install
cleos set contract build/contracts/eosio eosio.system -x 1000
123
cd eos/buildmake installcleos set contract build/contracts/eosio eosio.system -x 1000
[阅读全文]
EOS 重置依赖项 重新编译 MAC
admin | EOS | 2018-05-17
Shell
brew remove --force boost
brew remove --force llvm
cd /path/to/eos
rm -rf build/
git pull
git submodule update --init --recursive
./eosio_build.sh
1234567
brew remove --force boostbrew remove --force llvmcd /path/to/eosrm -rf build/git pullgit submodule u... [阅读全文]