Parity. Ethereum Client.
By Wood/Paronyan/Kotewicz/Drwięga/Volf et al.
Copyright 2015, 2016, 2017, 2018 Parity Technologies (UK) Ltd

parity [options]
parity [options] ui
parity [options] dapp <PATH>
parity [options] daemon <PID-FILE>
parity [options] account new
parity [options] account list
parity [options] account import <PATH>...
parity [options] wallet import <PATH>
parity [options] import --format=[FORMAT] [FILE]
parity [options] export blocks --format=[FORMAT] --from=[BLOCK] --to=[BLOCK] [FILE]
parity [options] export state [--no-storage] [--no-code] --min-balance=[WEI] --max-balance=[WEI] --at=[BLOCK]
--format=[FORMAT] [FILE]
parity [options] signer new-token
parity [options] signer list
parity [options] signer sign [ID]
parity [options] signer reject <ID>
parity [options] snapshot --at=[BLOCK] <FILE>
parity [options] restore [FILE]
parity [options] tools hash <FILE>
parity [options] db kill

Operating Options:
--public-node
Start Parity as a public web server. Account storage and transaction signing will be delegated to the UI.

--no-download
Normally new releases will be downloaded ready for updating. This disables it. Not recommended.

--no-consensus
Force the binary to run even if there are known issues regarding consensus. Not recommended.

--light
Experimental: run in light client mode. Light clients synchronize a bare minimum of data and fetch necessary
data on-demand from the network. Much lower in storage, potentially higher in bandwidth. Has no effect with
subcommands.

--force-direct
Run the originally installed version of Parity, ignoring any updates that have since been installed.

--mode=[MODE]
Set the operating mode. MODE can be one of: last - Uses the last-used mode, active if none; active - Parity
continuously syncs the chain; passive - Parity syncs initially, then sleeps and wakes regularly to resync; dark
- Parity syncs only when the RPC is active; offline - Parity doesn't sync. (default: last)

--mode-timeout=[SECS]
Specify the number of seconds before inactivity timeout occurs when mode is dark or passive (default: 300)

--mode-alarm=[SECS]
Specify the number of seconds before auto sleep reawake timeout occurs when mode is passive (default: 3600)

--auto-update=[SET]
Set a releases set to automatically update and install. SET can be one of: all - All updates in the our release
track; critical - Only consensus/security updates; none - No updates will be auto-installed. (default: critical)

--release-track=[TRACK]
Set which release track we should use for updates. TRACK can be one of: stable - Stable releases; beta - Beta
releases; nightly - Nightly releases (unstable); testing - Testing releases (do not use); current - Whatever
track this executable was released on. (default: current)

--chain=[CHAIN]
Specify the blockchain type. CHAIN may be either a JSON chain specification file or olympic, frontier,
homestead, mainnet, morden, ropsten, classic, expanse, musicoin, ellaism, testnet, kovan or dev. (default:
foundation)

--keys-path=[PATH]
Specify the path for JSON key files to be found (default: $BASE/keys)

--identity=[NAME]
Specify your node's name. (default: )

-d, --base-path=[PATH]
Specify the base data storage path.

--db-path=[PATH]
Specify the database directory path

Convenience options:
--unsafe-expose
All servers will listen on external interfaces and will be remotely accessible. It's equivalent with setting the
following: --{{ws,jsonrpc,ui,ipfs,secret_store,stratum}}-interface=all --*-hosts=all This option is UNSAFE
and should be used with great care!

-c, --config=[CONFIG]
Specify a configuration. CONFIG may be either a configuration file or a preset: dev, insecure, dev-insecure,
mining, or non-standard-ports. (default: $BASE/config.toml)

--ports-shift=[SHIFT]
Add SHIFT to all port numbers Parity is listening on. Includes network port and all servers (RPC, WebSockets,
UI, IPFS, SecretStore). (default: 0)

Account options:
--no-hardware-wallets
Disables hardware wallet support.

--fast-unlock
Use drasticly faster unlocking mode. This setting causes raw secrets to be stored unprotected in memory, so use
with care.

--keys-iterations=[NUM]
Specify the number of iterations to use when deriving key from the password (bigger is more secure) (default:
10240)

--accounts-refresh=[TIME]
Specify the cache time of accounts read from disk. If you manage thousands of accounts set this to 0 to disable
refresh. (default: 5)

--unlock=[ACCOUNTS]
Unlock ACCOUNTS for the duration of the execution. ACCOUNTS is a comma-delimited list of addresses. Implies
--no-ui.

--password=[FILE]...
Provide a file containing a password for unlocking an account. Leading and trailing whitespace is trimmed.
(default: [])

UI options:
--force-ui
Enable Trusted UI WebSocket endpoint, even when --unlock is in use.

--no-ui
Disable Trusted UI WebSocket endpoint.

--ui-no-validation
Disable Origin and Host headers validation for Trusted UI. WARNING: INSECURE. Used only for development.

--ui-interface=[IP]
Specify the hostname portion of the Trusted UI server, IP should be an interface's IP address, or local.
(default: local)

--ui-hosts=[HOSTS]
List of allowed Host header values. This option will validate the Host header sent by the browser, it is
additional security against some attack vectors. Special options: "all", "none",. (default: none)

--ui-path=[PATH]
Specify directory where Trusted UIs tokens should be stored. (default: $BASE/signer)

--ui-port=[PORT]
Specify the port of Trusted UI server. (default: 8180)

Networking options:
--no-warp
Disable syncing from the snapshot over the network.

--no-discovery
Disable new peer discovery.

--reserved-only
Connect only to reserved nodes.

--no-ancient-blocks
Disable downloading old blocks after snapshot restoration or warp sync.

--no-serve-light
Disable serving of light peers.

--warp-barrier=[NUM]
When warp enabled never attempt regular sync before warping to block NUM.

--port=[PORT]
Override the port on which the node should listen. (default: 30303)

--min-peers=[NUM]
Try to maintain at least NUM peers. (default: 25)

--max-peers=[NUM]
Allow up to NUM peers. (default: 50)

--snapshot-peers=[NUM]
Allow additional NUM peers for a snapshot sync. (default: 0)

--nat=[METHOD]
Specify method to use for determining public address. Must be one of: any, none, upnp, extip:<IP>. (default:
any)

--allow-ips=[FILTER]
Filter outbound connections. Must be one of: private - connect to private network IP addresses only; public -
connect to public network IP addresses only; all - connect to any IP address. (default: all)

--max-pending-peers=[NUM]
Allow up to NUM pending connections. (default: 64)

--network-id=[INDEX]
Override the network identifier from the chain we are on.

--bootnodes=[NODES]
Override the bootnodes from our chain. NODES should be comma-delimited enodes.

--node-key=[KEY]
Specify node secret key, either as 64-character hex string or input to SHA3 operation.

--reserved-peers=[FILE]
Provide a file containing enodes, one per line. These nodes will always have a reserved slot on top of the
normal maximum peers.

API and console options – RPC:
--no-jsonrpc
Disable the JSON-RPC API server.

--jsonrpc-port=[PORT]
Specify the port portion of the JSONRPC API server. (default: 8545)

--jsonrpc-interface=[IP]
Specify the hostname portion of the JSONRPC API server, IP should be an interface's IP address, or all (all
interfaces) or local. (default: local)

--jsonrpc-apis=[APIS]
Specify the APIs available through the JSONRPC interface. APIS is a comma-delimited list of API name. Possible
name are all, safe, web3, eth, net, personal, parity, parity_set, traces, rpc, parity_accounts, pubsub,
parity_pubsub, shh, shh_pubsub, signer, secretstore. You can also disable a specific API by putting '-' in the
front: all,-personal. (default: web3,eth,pubsub,net,parity,parity_pubsub,traces,rpc,shh,shh_pubsub)

--jsonrpc-hosts=[HOSTS]
List of allowed Host header values. This option will validate the Host header sent by the browser, it is
additional security against some attack vectors. Special options: "all", "none",. (default: none)

--jsonrpc-threads=[THREADS]
Turn on additional processing threads in all RPC servers. Setting this to non-zero value allows parallel cpu
-heavy queries execution. (default: 4)

--jsonrpc-cors=[URL]
Specify CORS header for JSON-RPC API responses. Special options: "all", "none". (default: none)

--jsonrpc-server-threads=[NUM]
Enables multiple threads handling incoming connections for HTTP JSON-RPC server.

API and console options – WebSockets:
--no-ws
Disable the WebSockets server.

--ws-port=[PORT]
Specify the port portion of the WebSockets server. (default: 8546)

--ws-interface=[IP]
Specify the hostname portion of the WebSockets server, IP should be an interface's IP address, or all (all
interfaces) or local. (default: local)

--ws-apis=[APIS]
Specify the APIs available through the WebSockets interface. APIS is a comma-delimited list of API name.
Possible name are web3, eth, pubsub, net, personal, parity, parity_set, traces, rpc, parity_accounts, pubsub,
parity_pubsub, shh, shh_pubsub, signer, secretstore. (default:
web3,eth,pubsub,net,parity,parity_pubsub,traces,rpc,shh,shh_pubsub)

--ws-origins=[URL]
Specify Origin header values allowed to connect. Special options: "all", "none". (default: parity://*,chrome
-extension://*,moz-extension://*)

--ws-hosts=[HOSTS]
List of allowed Host header values. This option will validate the Host header sent by the browser, it is
additional security against some attack vectors. Special options: "all", "none". (default: none)

API and console options – IPC:
--no-ipc
Disable JSON-RPC over IPC service.

--ipc-path=[PATH]
Specify custom path for JSON-RPC over IPC service. (default: \\.\pipe\jsonrpc.ipc)

--ipc-apis=[APIS]
Specify custom API set available via JSON-RPC over IPC. (default:
web3,eth,pubsub,net,parity,parity_pubsub,parity_accounts,traces,rpc,shh,shh_pubsub)

API and console options – Dapps:
--no-dapps
Disable the Dapps server (e.g. status page).

--dapps-path=[PATH]
Specify directory where dapps should be installed. (default: $BASE/dapps)

API and console options – IPFS:
--ipfs-api
Enable IPFS-compatible HTTP API.

--ipfs-api-port=[PORT]
Configure on which port the IPFS HTTP API should listen. (default: 5001)

--ipfs-api-interface=[IP]
Specify the hostname portion of the IPFS API server, IP should be an interface's IP address or local. (default:
local)

--ipfs-api-hosts=[HOSTS]
List of allowed Host header values. This option will validate the Host header sent by the browser, it is
additional security against some attack vectors. Special options: "all", "none". (default: none)

--ipfs-api-cors=[URL]
Specify CORS header for IPFS API responses. Special options: "all", "none". (default: none)

Secret store options:
--no-secretstore
Disable Secret Store functionality.

--no-secretstore-http
Disable Secret Store HTTP API.

--no-acl-check
Disable ACL check (useful for test environments).

--no-secretstore-auto-migrate
Do not run servers set change session automatically when servers set changes. This option has no effect when
servers set is read from configuration file.

--secretstore-contract=[SOURCE]
Secret Store Service contract address source: none, registry (contract address is read from registry) or
address. (default: none)

--secretstore-nodes=[NODES]
Comma-separated list of other secret store cluster nodes in form NODE_PUBLIC_KEY_IN_HEX@NODE_IP_ADDR:NODE_PORT.
(default: )

--secretstore-interface=[IP]
Specify the hostname portion for listening to Secret Store Key Server internal requests, IP should be an
interface's IP address, or local. (default: local)

--secretstore-port=[PORT]
Specify the port portion for listening to Secret Store Key Server internal requests. (default: 8083)

--secretstore-http-interface=[IP]
Specify the hostname portion for listening to Secret Store Key Server HTTP requests, IP should be an interface's
IP address, or local. (default: local)

--secretstore-http-port=[PORT]
Specify the port portion for listening to Secret Store Key Server HTTP requests. (default: 8082)

--secretstore-path=[PATH]
Specify directory where Secret Store should save its data. (default: $BASE/secretstore)

--secretstore-secret=[SECRET]
Hex-encoded secret key of this node.

--secretstore-admin=[PUBLIC]
Hex-encoded public key of secret store administrator.

Sealing/Mining options:
--force-sealing
Force the node to author new blocks as if it were always sealing/mining.

--reseal-on-uncle
Force the node to author new blocks when a new uncle block is imported.

--remove-solved
Move solved blocks from the work package queue instead of cloning them. This gives a slightly faster import
speed, but means that extra solutions submitted for the same work package will go unused.

--refuse-service-transactions
Always refuse service transactions.

--infinite-pending-block
Pending block will be created with maximal possible gas limit and will execute all transactions in the queue.
Note that such block is invalid and should never be attempted to be mined.

--no-persistent-txqueue
Don't save pending local transactions to disk to be restored whenever the node restarts.

--stratum
Run Stratum server for miner push notification.

--reseal-on-txs=[SET]
Specify which transactions should force the node to reseal a block. SET is one of: none - never reseal on new
transactions; own - reseal only on a new local transaction; ext - reseal only on a new external transaction; all
- reseal on all new transactions. (default: own)

--reseal-min-period=[MS]
Specify the minimum time between reseals from incoming transactions. MS is time measured in milliseconds.
(default: 2000)

--reseal-max-period=[MS]
Specify the maximum time since last block to enable force-sealing. MS is time measured in milliseconds.
(default: 120000)

--work-queue-size=[ITEMS]
Specify the number of historical work packages which are kept cached lest a solution is found for them later.
High values take more memory but result in fewer unusable solutions. (default: 20)

--relay-set=[SET]
Set of transactions to relay. SET may be: cheap - Relay any transaction in the queue (this may include invalid
transactions); strict - Relay only executed transactions (this guarantees we don't relay invalid transactions,
but means we relay nothing if not mining); lenient - Same as strict when mining, and cheap when not. (default:
cheap)

--usd-per-tx=[USD]
Amount of USD to be paid for a basic transaction. The minimum gas price is set accordingly. (default: 0.0001)

--usd-per-eth=[SOURCE]
USD value of a single ETH. SOURCE may be either an amount in USD, a web service or 'auto' to use each web
service in turn and fallback on the last known good value. (default: auto)

--price-update-period=[T]
T will be allowed to pass between each gas price update. T may be daily, hourly, a number of seconds, or a time
string of the form "2 days", "30 minutes" etc.. (default: hourly)

--gas-floor-target=[GAS]
Amount of gas per block to target when sealing a new block. (default: 4700000)

--gas-cap=[GAS]
A cap on how large we will raise the gas limit per block due to transaction volume. (default: 6283184)

--tx-queue-mem-limit=[MB]
Maximum amount of memory that can be used by the transaction queue. Setting this parameter to 0 disables
limiting. (default: 2)

--tx-queue-size=[LIMIT]
Maximum amount of transactions in the queue (waiting to be included in next block). (default: 8192)

--tx-queue-gas=[LIMIT]
Maximum amount of total gas for external transactions in the queue. LIMIT can be either an amount of gas or
'auto' or 'off'. 'auto' sets the limit to be 20x the current block gas limit. (default: off)

--tx-queue-strategy=[S]
Prioritization strategy used to order transactions in the queue. S may be: gas - Prioritize txs with low gas
limit; gas_price - Prioritize txs with high gas price; gas_factor - Prioritize txs using gas price and gas limit
ratio. (default: gas_price)

--tx-queue-ban-count=[C]
Number of times maximal time for execution (--tx-time-limit) can be exceeded before banning
sender/recipient/code. (default: 1)

--tx-queue-ban-time=[SEC]
Banning time (in seconds) for offenders of specified execution time limit. Also number of offending actions have
to reach the threshold within that time. (default: 180)

--stratum-interface=[IP]
Interface address for Stratum server. (default: local)

--stratum-port=[PORT]
Port for Stratum server to listen on. (default: 8008)

--min-gas-price=[STRING]
Minimum amount of Wei per GAS to be paid for a transaction to be accepted for mining. Overrides --usd-per-tx.

--gas-price-percentile=[PCT]
Set PCT percentile gas price value from last 100 blocks as default gas price when sending transactions.
(default: 50)

--author=[ADDRESS]
Specify the block author (aka "coinbase") address for sending block rewards from sealed blocks. NOTE: MINING
WILL NOT WORK WITHOUT THIS OPTION.

--engine-signer=[ADDRESS]
Specify the address which should be used to sign consensus messages and issue blocks. Relevant only to non-PoW
chains.

--tx-gas-limit=[GAS]
Apply a limit of GAS as the maximum amount of gas a single transaction may have for it to be mined.

--tx-time-limit=[MS]
Maximal time for processing single transaction. If enabled senders/recipients/code of transactions offending the
limit will be banned from being included in transaction queue for 180 seconds.

--extra-data=[STRING]
Specify a custom extra-data for authored blocks, no more than 32 characters.

--notify-work=[URLS]
URLs to which work package notifications are pushed. URLS should be a comma-delimited list of HTTP URLs.

--stratum-secret=[STRING]
Secret for authorizing Stratum server for peers.

Internal Options:
--can-restart
Executable will auto-restart if exiting with 69

Miscellaneous options:
--no-color
Don't use terminal color codes in output.

-v, --version
Show information about version.

--no-config
Don't load a configuration file.

--ntp-servers=[HOSTS]
Comma separated list of NTP servers to provide current time (host:port). Used to verify node health. Parity uses
pool.ntp.org NTP servers; consider joining the pool: http://www.pool.ntp.org/join.html (default:
0.parity.pool.ntp.org:123,1.parity.pool.ntp.org:123,2.parity.pool.ntp.org:123,3.parity.pool.ntp.org:123)

-l, --logging=[LOGGING]
Specify the logging level. Must conform to the same format as RUST_LOG.

--log-file=[FILENAME]
Specify a filename into which logging should be appended.

Footprint options:
--fast-and-loose
Disables DB WAL, which gives a significant speed up but means an unclean exit is unrecoverable.

--scale-verifiers
Automatically scale amount of verifier threads based on workload. Not guaranteed to be faster.

--tracing=[BOOL]
Indicates if full transaction tracing should be enabled. Works only if client had been fully synced with tracing
enabled. BOOL may be one of auto, on, off. auto uses last used value of this option (off if it does not exist).
(default: auto)

--pruning=[METHOD]
Configure pruning of the state/storage trie. METHOD may be one of auto, archive, fast: archive - keep all state
trie data. No pruning. fast - maintain journal overlay. Fast but 50MB used. auto - use the method most recently
synced or default to fast if none synced. (default: auto)

--pruning-history=[NUM]
Set a minimum number of recent states to keep when pruning is active. (default: 64)

--pruning-memory=[MB]
The ideal amount of memory in megabytes to use to store recent states. As many states as possible will be kept
within this limit, and at least --pruning-history states will always be kept. (default: 32)

--cache-size-db=[MB]
Override database cache size. (default: 128)

--cache-size-blocks=[MB]
Specify the prefered size of the blockchain cache in megabytes. (default: 8)

--cache-size-queue=[MB]
Specify the maximum size of memory to use for block queue. (default: 40)

--cache-size-state=[MB]
Specify the maximum size of memory to use for the state cache. (default: 25)

--db-compaction=[TYPE]
Database compaction type. TYPE may be one of: ssd - suitable for SSDs and fast HDDs; hdd - suitable for slow
HDDs; auto - determine automatically. (default: auto)

--fat-db=[BOOL]
Build appropriate information to allow enumeration of all accounts and storage keys. Doubles the size of the
state database. BOOL may be one of on, off or auto. (default: auto)

--cache-size=[MB]
Set total amount of discretionary memory to use for the entire system, overrides other cache and queue options.

--num-verifiers=[INT]
Amount of verifier threads to use or to begin with, if verifier auto-scaling is enabled.

Import/export options:
--no-seal-check
Skip block seal check.

Snapshot options:
--no-periodic-snapshot
Disable automated snapshots which usually occur once every 10000 blocks.

Virtual Machine options:
--jitvm
Enable the JIT VM.

Whisper options:
--whisper
Enable the Whisper network.

--whisper-pool-size=[MB]
Target size of the whisper message pool in megabytes. (default: 10)

Legacy options:
--warp
Does nothing; warp sync is enabled by default.

--dapps-apis-all
Dapps server is merged with RPC server. Use --jsonrpc-apis.

--geth
Run in Geth-compatibility mode. Sets the IPC path to be the same as Geth's. Overrides the --ipc-path and
--ipcpath options. Alters RPCs to reflect Geth bugs. Includes the personal_ RPC by default.

--testnet
Testnet mode. Equivalent to --chain testnet. Overrides the --keys-path option.

--import-geth-keys
Attempt to import keys from Geth client.

--ipcdisable
Equivalent to --no-ipc.

--ipc-off
Equivalent to --no-ipc.

--nodiscover
Equivalent to --no-discovery.

-j, --jsonrpc
Does nothing; JSON-RPC is on by default now.

--jsonrpc-off
Equivalent to --no-jsonrpc.

-w, --webapp
Does nothing; dapps server is on by default now.

--dapps-off
Equivalent to --no-dapps.

--rpc
Does nothing; JSON-RPC is on by default now.

--dapps-port=[PORT]
Dapps server is merged with RPC server. Use --jsonrpc-port.

--dapps-interface=[IP]
Dapps server is merged with RPC server. Use --jsonrpc-interface.

--dapps-hosts=[HOSTS]
Dapps server is merged with RPC server. Use --jsonrpc-hosts.

--dapps-cors=[URL]
Dapps server is merged with RPC server. Use --jsonrpc-cors.

--dapps-user=[USERNAME]
Dapps server authentication has been removed.

--dapps-pass=[PASSWORD]
Dapps server authentication has been removed.

--datadir=[PATH]
Equivalent to --base-path PATH.

--networkid=[INDEX]
Equivalent to --network-id INDEX.

--peers=[NUM]
Equivalent to --min-peers NUM.

--nodekey=[KEY]
Equivalent to --node-key KEY.

--rpcaddr=[IP]
Equivalent to --jsonrpc-interface IP.

--rpcport=[PORT]
Equivalent to --jsonrpc-port PORT.

--rpcapi=[APIS]
Equivalent to --jsonrpc-apis APIS.

--rpccorsdomain=[URL]
Equivalent to --jsonrpc-cors URL.

--ipcapi=[APIS]
Equivalent to --ipc-apis APIS.

--ipcpath=[PATH]
Equivalent to --ipc-path PATH.

--gasprice=[WEI]
Equivalent to --min-gas-price WEI.

--etherbase=[ADDRESS]
Equivalent to --author ADDRESS.

--extradata=[STRING]
Equivalent to --extra-data STRING.

--cache=[MB]
Equivalent to --cache-size MB.

Parity 钱包启动配置的更多相关文章

  1. ABP(现代ASP.NET样板开发框架)系列之5、ABP启动配置

    点这里进入ABP系列文章总目录 基于DDD的现代ASP.NET开发框架--ABP系列之5.ABP启动配置 ABP是“ASP.NET Boilerplate Project (ASP.NET样板项目)” ...

  2. ABP框架 - 启动配置

    文档目录 本节内容: 配置ABP 替换内置服务 配置模块 为一个模块创建配置 ABP在启动时,提供基础框架和模型来配置和模块化. 置ABP 在预初始化事件中进行配置,示例: kid1412注:XmlL ...

  3. ABP理论学习之启动配置

    返回总目录 本篇目录 配置ABP 配置模块 为模块创建配置 为了在应用启动时配置ABP和模块,ABP提供了一个基础设施. 配置ABP 配置ABP是在模块的PreInitialize事件中完成的.下面的 ...

  4. 【推荐】CentOS安装Tomcat-7.0.57+启动配置+安全配置+性能配置

    注:以下所有操作均在CentOS 6.5 x86_64位系统下完成. #准备工作# 在安装Tomcat之前,请确保已经安装了JDK-1.7环境,具体见<CentOS安装JDK-1.7>. ...

  5. 基于DDD的.NET开发框架 - ABP启动配置

    返回ABP系列 ABP是“ASP.NET Boilerplate Project (ASP.NET样板项目)”的简称. ASP.NET Boilerplate是一个用最佳实践和流行技术开发现代WEB应 ...

  6. 适合最新版docker自定义启动配置

    docker不断发布新版本,以前默认的在 /etc/default/docker里修改,但是新版已经不推荐了 注意: 一些文章推荐在 /lib/systemd/system/docker.servic ...

  7. MongoDB启动配置等

    目录: 一.mongoDB 启动配置 二.导出,导入,运行时备份 三.Fsync锁,数据修复 四.用户管理,安全认证 一.启动项 mongod --help C:\Windows\system32&g ...

  8. 14.6.1 InnoDB Startup Configuration 启动配置

    14.6.1 InnoDB Startup Configuration 启动配置 首先描述关于InnoDB 配置设计数据库文件,日志文件,page size 和内存buffer 的配置. 推荐你定义数 ...

  9. ABP启动配置

    ABP启动配置   返回ABP系列 ABP是“ASP.NET Boilerplate Project (ASP.NET样板项目)”的简称. ASP.NET Boilerplate是一个用最佳实践和流行 ...

随机推荐

  1. (C/C++学习笔记) 十八. 继承和多态

    十八. 继承和多态 ● 继承的概念 继承(inheritance): 以旧类为基础创建新类, 新类包含了旧类的数据成员和成员函数(除了构造函数和析构函数), 并且可以派生类中定义新成员. 形式: cl ...

  2. 莪的拽、像省田各号①样没尽頭队——需求改进&原型设计

    需求改进&原型设计 1. 需求&原型改进 经过老师的指导以及组内成员的讨论后,我们认为之前的需求分析已经比较准确完备. 根据电子宠物的形象结构特点,以及模拟屏幕的空间限制,我们设计出了 ...

  3. centos6:一个网卡上显示多个ip地址的错误

    网卡显示如下:  上面显示em1有两个ip地址,其中36是设置的固定IP,212这个ip不清楚怎么搞出来的,但是通过212地址也能够正常连接主机.重启网卡之后,还是没有变化. 网卡em1配置如下,/e ...

  4. 保存 Mybatis打印的SQL日志到数据库

    之前做项目,一般会有一张,用户操作记录的数据表,里面主要包括一些,用户请求的URL和请求参数,用以记录用户做过哪些事情.并没有以文件的形式来做记录,当然只适合于一些用户量特别少的系统. 而Mybati ...

  5. Bitdefender Internet Security 2013 – 免费3个月

    Bitdefender Internet Security 2013 – 免费3个月大约1分钟参加调查,申请3个月免费,缺陷是…要经过人工审核活动地址: 点此进入申请方法,最好用谷歌翻译(俄文)

  6. ACCESS删除datagridview和数据库中的一条数据,同时更新显示的方法源码

    //删除,行删除 private void 删除_Click(object sender, EventArgs e) { int dgrcount = dataGridView1.SelectedRo ...

  7. Cookie注入实战(非SQL注入)

    cookie注入原理其实很简单,就是利用了session机制中的特性,只能说是特性,不能算是漏洞. 这里简单的说下原理,session的机制就相当于你有一张蛋糕店的会员卡,这张会员卡就是你浏览器中的c ...

  8. JavaScript权威指南——跳转语句

    前言:JavaScript中有一类语句叫做跳转语句.从名称就可以看出,它使得JavaScript的执行可以从一个位置跳转到另一个位置. return语句让解释器跳出循环体的执行,并提供本次调用的返回值 ...

  9. IOS 作业项目(1) 关灯游戏 (百行代码搞定)

    1,准备工作,既然要开关灯,就需要确定灯的灯的颜色状态 首先想到的是扩展UIColor

  10. CentOS7安装OpenStack(Rocky版)-04.安装Nova计算服务(控制节点)

    上一篇文章分享了glance镜像服务的安装配置,本文主要分享openstack的计算服务Nova的安装和配制方法 ------------------ 完美的分割线 ----------------- ...