火车hxd3ca车身长度?
中国准则动车组:一节车长度约209m,车体宽度3360mm,车辆高度4050mm,运行速度350km/h。 协调号动车组:头车长度20.7m,中间车长度25m,车体宽度3.3m,车体高度3.89m,列车总长200.67m,适应站台高度1.25m。 因为动车的型号众多,一般来说长度介于24.5米和27米之间。宽度在3.3米,单节动车的车身长度27000 毫米,两端车辆25000 毫米,车身宽度3380 毫米,车身至顶板高度3650 毫米(至收躲室之集电弓高度4490 毫米)。 编组形式:8辆编组(4动4挈),定员556人(商务座10席,一等座28席,二等座518席)
协调3CA型电力机车长度20846毫米,宽度3100毫米,高度4100毫米,功率7200千瓦,构造时速120公里,这款机车是不带供电装置的协调3C型电力机车,用于牵引货运列车,之前生产的协调3C主要用于牵引客运列车并为客车供电,也有一些协调3C转为了货运机车。
redis怎么开启ssl?
redis开启ssl过程:
首先编译安装redis:
cd /usr/local/src wget https://download.redis.io/releases/redis-6.0.9.tar.gz tar xf redis-6.0.9.tar.gz -C /opt cd redis-6.0.9 make MALLOC=libc BUILD_TLS=yes make PREFIX=/opt/redis install mkdir /data/redis;echo 'PATH=/opt/redis/bin:$PATH' >> /etc/profile source /etc/profile;mkdir /opt/redis/conf cp /usr/local/src/redis-6.0.9/redis.conf /opt/redis/conf/ sed -i "365s#./#/opt/redis/conf/#" /opt/redis/conf/redis.conf echo vm.overcommit_memory = 1 >> /etc/sysctl.conf;sysctl -p
生成证书
mkdir /opt/redis/zs openssl genrsa -out ca.key 4096 openssl req -x509 -new -nodes -sha256 -key ca.key -days 3650 -subj '/O=Redis Test/CN=Certificate Authority' -out ca.crt openssl genrsa -out redis.key 2048 openssl req -new -sha256 -key redis.key -subj '/O=Redis Test/CN=Server' | openssl x509 -req -sha256 -CA ca.crt -CAkey ca.key -CAserial ca.txt -CAcreateserial -days 365 -out redis.crt openssl dhparam -out redis.dh 2048
启动redis
cd /opt/redis ./bin/redis-server --tls-port 6379 --port 0 --tls-cert-file ./zs/redis.crt --tls-key-file ./zs/redis.key --tls-ca-cert-file ./zs/ca.crt
验证tls
cd /opt/redis ./bin/redis-cli --tls --cert ./zs/redis.crt --key ./zs/redis.key --cacert ./zs/ca.crt