范文健康探索娱乐情感热点
投稿投诉
热点动态
科技财经
情感日志
励志美文
娱乐时尚
游戏搞笑
探索旅游
历史星座
健康养生
美丽育儿
范文作文
教案论文
国学影视

Greenplum6。0开源版本集群部署实战

  1.环境说明
  节点
  系统版本
  安装服务
  Greenplum版本
  node1
  centos 7.6
  master
  gp13.0
  node2
  centos 7.8
  segment
  gp13.0
  node3
  centos 7.8
  segment
  gp13.02.安装文件下载
  greenplum下载
  上传到服务器[root@test-cdh-01 tools]# ll total 67740 drwxr-xr-x. 2 root root     4096 Oct 29  2019 20191029 drwxr-xr-x  2 root root     4096 Dec  3  2019 20191203 drwxr-xr-x  2 root root     4096 Dec  4  2019 20191204 -rw-r--r--. 1 root root    15945 Oct 28  2019 client.tgz -rw-r--r--  1 root root 69333396 Jan 26 12:22 greenplum-db-6.13.0-rhel7-x86_64.rpm3.1 修改hostname[root@test-cdh-01 tools] cat /etc/hosts 127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1         localhost localhost.localdomain localhost6 localhost6.localdomain6 196.1.121.79 test-shuxi-02 196.1.121.80 test-cdh-01 196.1.121.81 test-cdh-02 196.1.121.82 test-cdh-033.2 配置root的免密登录
  设置免密登录,从test-cdh-01到test-cdh02、test-cdh-03# home下创建.ssh目录 [root@hnode1 ~] mkdir .ssh [root@test-cdh-01 ~] cd .ssh/ [root@test-cdh-01 .ssh] pwd /root/.ssh # 生成秘钥 [root@test-cdh-01 .ssh] ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): (回车) Enter passphrase (empty for no passphrase):(回车) Enter same passphrase again:(回车) Your identification has been saved in /root/.ssh/id_rsa. Your public key has been saved in /root/.ssh/id_rsa.pub. The key fingerprint is: SHA256:F1XLKMmnivY288gcK5IsY90xm0kawlM62D+uyGIeB0k root@test-cdh-01 The keys randomart image is: +---[RSA 2048]----+ |            ...  | |         . o o . | | E        = o o  | |. . .      =      || * o    S o      | |. O . +. o             | | . O *o*o             | |oo* O.*+++         | |=+.=.o o*+.         | +----[SHA256]-----+ # 查看生成的文件 [root@hnode1 .ssh] ll 总用量 8 -rw-------. 1 root root 1675 3月  30 18:58 id_rsa -rw-r--r--. 1 root root  393 3月  30 18:58 id_rsa.pub [root@test-cdh-01 .ssh] #将test-cdh-01的公钥拷贝到test-cdh-02和test-cdh-03 [root@test-cdh-01 .ssh] ssh-copy-id test-cdh-02 root@test-cdh-02 password: #(输入test-cdh-01的密码)# 尝试登陆test-cdh-02 [root@test-cdh-01 .ssh] ssh test-cdh-02 # 登出 [root@test-cdh-02 ~] exit Connection to test-cdh-02 closed. #将公钥拷贝到test-cdh-03 [root@test-cdh-01 .ssh] ssh-copy-id test-cdh-03 root@test-cdh-03s password: #(输入test-cdh-03的密码) [root@test-cdh-01 .ssh] ssh test-cdh-03 # 登出 [root@test-cdh-03 ~] exit Connection to test-cdh-03 closed.3.3 配置时间同步
  所有节点都需要配置
  #安装时间同步服务(ntp)[root@test-cdh-01 opt] yum install ntp Loaded plugins: fastestmirror, refresh-packagekit, security Loading mirror speeds from cached hostfile  * base: ftp.sjtu.edu.cn  * extras: ap.stykers.moe  * updates: mirror.bit.edu.cn # 强制从远程更新 [root@test-cdh-03 ~] sudo ntpdate 0.centos.pool.ntp.org 28 Apr 15:54:51 ntpdate[75627]: step time server 193.4.58.77 offset 2443633.848252 sec # 启动服务 [root@test-cdh-01 opt] systemctl start ntpd.service # 检查服务状态 [root@test-cdh-03 ~] systemctl status ntpd.service # 设置开机启动 [root@test-cdh-03 ~] systemctl enable ntpd.service # 检查开机启动是否设置成功 [root@test-cdh-03 ~] systemctl is-enabled ntpd enabled3.4 关闭防火墙
  所有节点都要操作关闭防火墙[root@test-cdh-01 ~]# firewall-cmd --state running [root@test-cdh-01 ~]# systemctl stop firewall [root@test-cdh-01 ~]# systemctl disable firewalld.service [root@test-cdh-01 ~]# firewall-cmd --state not running关闭selinuxvim /etc/selinux/config # 将 SELINUX=enforcing 修改为: SELINUX=disabled # 重启服务器后查看 SELINUX 状态 [root@test-cdh-01 ~]# sestatus SELinux status:   disabled3.5 修改内核参数
  所有节点都要修改vim /etc/sysctl.conf # 末尾追加以下内容 kernel.shmmax = 500000000 kernel.shmmni = 4096 kernel.shmall = 4000000000 kernel.sem = 250 512000 100 2048 kernel.sysrq = 1 kernel.core_uses_pid = 1 kernel.msgmnb = 65536 kernel.msgmax = 65536 kernel.msgmni = 2048 net.ipv4.tcp_syncookies = 1 net.ipv4.ip_forward = 0 net.ipv4.conf.default.accept_source_route = 0 net.ipv4.tcp_tw_recycle = 1 net.ipv4.tcp_max_syn_backlog = 4096 net.ipv4.conf.all.arp_filter = 1 net.ipv4.ip_local_port_range = 10000 65535 net.core.netdev_max_backlog = 10000 net.core.rmem_max = 2097152 net.core.wmem_max = 2097152 vm.overcommit_memory = 2 kernerl.shmall和kernerl.shmmax参数的计算方式
  kernerl.shmall :echo $(expr $(getconf _PHYS_PAGES) / 2)
  kernel.shmmax : echo $(expr $(getconf _PHYS_PAGES) / 2 * $(getconf PAGE_SIZE))
  64GB内存以上主机的参数
  vm.dirty_background_ratio = 0 vm.dirty_ratio = 0 vm.dirty_background_bytes = 1610612736 # 1.5GB vm.dirty_bytes = 4294967296 # 4GB
  执行次命令设置 vm.min_free_kbytes (大内存时使用)
  awk "BEGIN {OFMT = "%.0f";} /MemTotal/ {print "vm.min_free_kbytes =", $2 * .03;}" /proc/meminfo >> /etc/sysctl.conf
  64G内存以下得主机建议以下参数 移除以下参数
  vm.dirty_background_bytes
  vm.dirty_bytes
  设置以下得参数
  vm.dirty_background_ratio = 3
  vm.dirty_ratio = 10 每台机器都执行命令,使配置生效[root@test-cdh-01 opt]# sysctl -p kernel.shmmax = 500000000 kernel.shmmni = 4096 kernel.shmall = 4000000000 kernel.sem = 250 512000 100 2048 kernel.sysrq = 1 kernel.core_uses_pid = 1 kernel.msgmnb = 65536 kernel.msgmax = 65536 kernel.msgmni = 2048 net.ipv4.tcp_syncookies = 1 net.ipv4.ip_forward = 0 net.ipv4.conf.default.accept_source_route = 0 net.ipv4.tcp_tw_recycle = 1 net.ipv4.tcp_max_syn_backlog = 4096 net.ipv4.conf.all.arp_filter = 1 net.ipv4.ip_local_port_range = 10000 65535 net.core.netdev_max_backlog = 10000 net.core.rmem_max = 2097152 net.core.wmem_max = 2097152 vm.overcommit_memory = 23.6 配置资源限制参数所有节点都需要进行配置vim /etc/security/limits.conf # 可打开的文件描述符的最大数,超过会警告(软限制) * soft nofile 65536 # 可打开的文件描述符的最大数,超过会报错(硬限制) * hard nofile 65536 # 单个用户可用的最大进程数量,超过会警告(软限制) * soft nproc 131072 # 单个用户可用的最大进程数量,超过会报错(硬限制) * hard nproc 131072 3.7 创建用户和用户组所有节点都需要创建gpadmin用户及用户组,将其作为greenplum的操作用户# 增加用户组 groupadd -g 530 gpadmin # 增加用户 useradd -g 530 -u 530 -m -d /home/gpadmin -s /bin/bash gpadmin # 对文件夹进行赋权 chown -R gpadmin:gpadmin /home/gpadmin/ # 为新用户创建密码 [root@test-cdh-02 ~]# passwd gpadmin 更改用户 gpadmin 的密码 新的 密码:(gpadmin)#密码提示太简单,连续输入两次即可。 无效的密码:密码少于 8 个字符 重新输入新的 密码: passwd:所有的身份验证令牌已经成功更新 4 安装Greenplum4.1 安装Greenplum rpm包# 安装 [root@test-cdh-01 /]# cd /data/tools [root@test-cdh-01 opt]# [root@test-cdh-01 greenplum]# rpm -ivh greenplum-db-6.13.0-rhel7-x86_64.rpm# 查看安装好的文件 [root@test-cdh-01 opt]# cd /usr/local/ [root@test-cdh-01 local]# ll 总用量 0 lrwxrwxrwx   1 root root  29 6月   4 11:06 greenplum-db -> /usr/local/greenplum-db-6.13.0 drwxr-xr-x  12 root root 202 6月   4 11:06 greenplum-db-6.13.0 # 将文件分配给 gpadmin 用户 [root@test-cdh-01 local]#  chown -R gpadmin:gpadmin greenplum-db*# 将文件分发到 segment 节点 [root@test-cdh-01 local]# scp -r greenplum-db-6.13.0/ root@test-cdh-02:/usr/local [root@test-cdh-01 local]# scp -r greenplum-db-6.13.0/ root@test-cdh-03:/usr/local# test-cdh-03 上面执行# 创建软连接 [root@test-cdh-02 local]# ln -s greenplum-db-6.13.0/ greenplum-db# 将文件分配给 gpadmin 用户 [root@test-cdh-02 local]# chown -R gpadmin:gpadmin greenplum-db*# test-cdh-03 上面执行 [root@test-cdh-03 local]# ln -s greenplum-db-6.13.0/ greenplum-db [root@test-cdh-03 local]# chown -R gpadmin:gpadmin greenplum-db*4.2 配置gpadmina用户的免密登陆# 生成秘钥 [root@test-cdh-01 opt]# su gpadmin [gpadmin@test-cdh-01 opt]$ ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to save the key (/home/gpadmin/.ssh/id_rsa): #(回车) Enter passphrase (empty for no passphrase):#(回车) Enter same passphrase again: Your identification has been saved in /home/gpadmin/.ssh/id_rsa. Your public key has been saved in /home/gpadmin/.ssh/id_rsa.pub. The key fingerprint is: SHA256:TTr5ZrIMSa+VXwFJJiAoUPmYskWTR8DLiFpraX0+7dg gpadmin@test-cdh-01 The key s randomart image is: +---[RSA 2048]----+ |ooo*o ... o      ||. B ..   + .     ||.= B      +      ||+ B .    = .     ||.= +  . S . .    ||o = ...o +   .   || o   oo.= + .    ||      oB.* .     ||      ooE .      | +----[SHA256]-----+ [gpadmin@test-cdh-01 opt]$ [gpadmin@test-cdh-01 opt]$ cd ~ [gpadmin@test-cdh-01 .ssh]$ pwd /home/gpadmin/.ssh # 配置 test-cdh-01 免密登录 [gpadmin@test-cdh-01 .ssh]$ ssh-copy-id hnode1 gpadmin@test-cdh-01 password: #(输入gpadmin用户的密码)...# 尝试免密登录 test-cdh-01 [gpadmin@test-cdh-01 .ssh]$ ssh hnode1  # 登录成功 Last login: Fri May 29 13:44:15 2020 # 退出登录 [gpadmin@test-cdh-01 ~]$ exit 登出 Connection to test-cdh-01 closed. # 配置 hnode2 免密登录 ssh-copy-id test-cdh-02 # 配置 hnode3 免密登录 ssh-copy-id test-cdh-034.3 创建节点列表文件
  在master节点配置[gpadmin@test-cdh-01 .ssh]$ mkdir /home/gpadmin/conf [gpadmin@test-cdh-01 .ssh]$ [gpadmin@test-cdh-01 .ssh]$ [gpadmin@test-cdh-01 .ssh]$ cd /home/gpadmin/conf [gpadmin@test-cdh-01 conf]$ vim hostlist #添加 GreenPlum 集群的所有节点 [gpadmin@hnode1 conf]$ cat hostlist test-cdh-01 test-cdh-02 test-cdh-03 [gpadmin@test-cdh-01 conf]$ vim seg_hosts #添加 GreenPlum 集群的所有segment节点 [gpadmin@hnode1 conf]$ cat seg_hosts test-cdh-02 test-cdh-034.4 使用gpssh-exkeys连接所有服务器
  在 master 节点使用 gpssh-exkeys 将所有机器的通道打开,这样在每台机器之间跳转,就不需要输入密码。[gpadmin@test-cdh-01 conf]$ pwd /home/gpadmin/conf [gpadmin@test-cdh-01 conf]$ source /usr/local/greenplum-db/greenplum_path.sh [gpadmin@test-cdh-01 conf]$ gpssh-exkeys -f hostlist [STEP 1 of 5] create local ID and authorize on local host   ... /home/gpadmin/.ssh/id_rsa file exists ... key generation skipped  [STEP 2 of 5] keyscan all hosts and update known_hosts file  [STEP 3 of 5] retrieving credentials from remote hosts   ... send to test-cdh-02   ... send to test-cdh-03  [STEP 4 of 5] determine common authentication file content  [STEP 5 of 5] copy authentication files to all remote hosts   ... finished key exchange with test-cdh-02   ... finished key exchange with test-cdh-03  [INFO] completed successfully # 测试批量操作 [gpadmin@test-cdh-01 conf]$ gpssh -f hostlist => pwd [test-cdh-01] /home/gpadmin [test-cdh-02] /home/gpadmin [test-cdh-03] /home/gpadmin => quit # 退出4.5 创建数据存储空间在master节点创建元数据目录[gpadmin@test-cdh-01 ~]$ mkdir -p /data/gpadmin/data/master #如果提示没有权限,先用root用户创建,然后使用chown -r gpadmin:gpadmin /gpadmin/data/master变更文件夹用户和组在segment节点创建数据存储目录[gpadmin@test-cdh-01 ~]$ source /usr/local/greenplum-db/greenplum_path.sh [gpadmin@test-cdh-01 ~]$ gpssh -f /home/gpadmin/conf/seg_hosts => mkdir -p /data/gpadmin/data/primary [test-cdh-02] [test-cdh-03] => mkdir -p /data/gpadmin/data/mirror [test-cdh-02] [test-cdh-03] => ll /data/gpadmin/data/ [test-cdh-02] 总用量 0 [test-cdh-02] drwxrwxr-x 2 gpadmin gpadmin 6 5月  29 18:30 mirror [test-cdh-02] drwxrwxr-x 2 gpadmin gpadmin 6 5月  29 18:30 primary [test-cdh-03] 总用量 0 [test-cdh-03] drwxrwxr-x 2 gpadmin gpadmin 6 5月  29 18:30 mirror [test-cdh-03] drwxrwxr-x 2 gpadmin gpadmin 6 5月  29 18:30 primary => quit4.6配置.bash_profile环境变量
  在master节点配置[gpadmin@hnode1 ~]$ vim /home/gpadmin/.bash_profile  # 添加下面内容source /usr/local/greenplum-db/greenplum_path.sh  # 这个路径对应安装 gp 的目录export MASTER_DATA_DIRECTORY=/data/gpadmin/data/master/gpseg-1 export PGPORT=5432 export PGUSER=gpadmin export PGDATABASE=Greenplum  # 将刚刚配置的加到环境变量中 PATH=$PATH:$HOME/.local/bin:$HOME/bin:$MASTER_DATA_DIRECTORY  [gpadmin@hnode1 ~]$ source /home/gpadmgpin/.bash_profile [gpadmin@hnode1 ~]$ echo $GPHOME /usr/local/greenplum-db/. 如果初始化的时候提示MASTER_DATA_DIRECTORY不存在,则将MASTER_DATA_DIRECTORY=/data/gpadmin/data/master/gpseg-1添加到 /home/gpadmin/.bashrc中[gpadmin@test-cdh-01 ~]$ pwd /home/gpadmin [gpadmin@test-cdh-01 ~]$ cat .bashrc  # .bashrc MASTER_DATA_DIRECTORY=/data/gpadmin/data/master/gpseg-1 export MASTER_DATA_DIRECTORY # Source global definitionsif [ -f /etc/bashrc ]; then         . /etc/bashrc fi4.7 初始化配置文件在管理节点配置配置模板为 $GPHOME/docs/cli_help/gpconfigs/gpinitsystem_config,将文件cp到/home/gpadmin/gpconfigs下进行配置[gpadmin@test-cdh-01 ~]$ mkdir /home/gpadmin/gpconfigs [gpadmin@test-cdh-01 ~]$ cd gpconfigs/ [gpadmin@test-cdh-01 gpconfigs]$ pwd /home/gpadmin/gpconfigs  # 创建 节点列表文件 hostfile_gpinitsystem [gpadmin@test-cdh-01 gpconfigs]$ touch hostfile_gpinitsystem  #将segment节点名称添加到该文件内 [gpadmin@test-cdh-01 gpconfigs]$ cat /home/gpadmin/gpconfigs/hostfile_gpinitsystem hnode2 hnode3  # 复制配置文件模板 [gpadmin@test-cdh-01 ~]$ cd /home/gpadmin/gpconfigs/ [gpadmin@test-cdh-01 gpconfigs]$ cp $GPHOME/docs/cli_help/gpconfigs/gpinitsystem_config . #文件cp到当前目录  # 修改配置 [gpadmin@test-cdh-01 gpconfigs]$ vim gpinitsystem_config # 配置文件文件内容如下#数据库代号 ARRAY_NAME="Greenplum"#segment前缀 SEG_PREFIX=gpseg #primary segment 起始的端口号,如果初始化的时候启动不起来,可能是端口冲突,需要修改端口 PORT_BASE=6000 #指定primary segment的数据目录,网上写的是多个相同目录,多个目录表示一台机器有多个segmentdeclare -a DATA_DIRECTORY=(/data/gpadmin/data/primary) #master所在机器的host name MASTER_HOSTNAME=test-cdh-01 #master的数据目录 MASTER_DIRECTORY=/data/gpadmin/data/master #master的端口 MASTER_PORT=5432 #指定bash的版本 TRUSTED_SHELL=/usr/bin/ssh #将日志写入磁盘的间隔,每个段文件通常 =16MB < 2 * CHECK_POINT_SEGMENTS + 1 CHECK_POINT_SEGMENTS=8 #字符集 ENCODING=UNICODE #mirror segment 起始的端口号 MIRROR_PORT_BASE=7000 # mirror的数据目录,和主数据一样,一个对一个,多个对多个declare -a MIRROR_DATA_DIRECTORY=(/home/gpadmin/data/mirror) MACHINE_LIST_FILE=/home/gpadmin/gpconfigs/hostfile_gpinitsystem 5. 初始化数据库5.1 初始化数据库
  在master节点执行[gpadmin@test-cdh-01 gpconfigs]$ cd ~ [gpadmin@test-cdh-01 ~]$ pwd /home/gpadmin [gpadmin@test-cdh-01 ~]$ source /usr/local/greenplum-db/greenplum_path.sh [gpadmin@test-cdh-01 ~]$ gpinitsystem -c gpconfigs/gpinitsystem_config -h gpconfigs/hostfile_gpinitsystem ... Continue with Greenplum creation Yy|Nn (default=N): #变量写Y ... 20200... gpstart:hnode1:gpadmin-[INFO]:-   Successful segment starts ... 20200... gpinitsystem:hnode1:gpadmin-[INFO]:-Greenplum Database instance successfully created  # GreenPlum 初始化成功5.2 重新初始化如果初始化失败。可以查看 less /home/gpadmin/gpAdminLogs/gpinitsystem_{初始化日期}.log来看是失败原因,解决后重新初始化。但重新初始化之前需要将失败的实例删掉,操作如下[gpadmin@test-cdh-01 ~]$ rm -rf /home/gpadmin/data/master/gpseg-1 6. 连接数据库进行测试
  gp常用命令参考# 连接GreenPlum [gpadmin@test-cdh-01 ~]$ psql -d postgres psql (9.4.24) Type "help" for help.  postgres=# select version();                         version ----------------------------------------------------------  PostgreSQL 9.4.24 (Greenplum Database 6.13.0 build ......  (1 row)  # 查看现有database postgres=# l                                List of databases | Name    |  Owner  | Encoding |  Collate   |   Ctype    |  Access privileges| |-----------|---------|----------|------------|------------|---------------------|  postgres  | gpadmin | UTF8     | en_US.utf8 | en_US.utf8 |  template0 | gpadmin | UTF8     | en_US.utf8 | en_US.utf8 | =c/gpadmin         +            |         |          |            |                               | gpadmin=CTc/gpadmin  template1 | gpadmin | UTF8     | en_US.utf8 | en_US.utf8 | =c/gpadmin         +            |         |          |            |            | gpadmin=CTc/gpadmin (3 rows)  # 新建database postgres=# create database test; CREATE DATABASE  # 查看 database 是否创建成功 postgres=# l                                List of databases    Name    |  Owner  | Encoding |  Collate   |   Ctype    |  Access privileges -----------+---------+----------+------------+------------+---------------------  postgres  | gpadmin | UTF8     | en_US.utf8 | en_US.utf8 |  template0 | gpadmin | UTF8     | en_US.utf8 | en_US.utf8 | =c/gpadmin         +            |         |          |            |            | gpadmin=CTc/gpadmin  template1 | gpadmin | UTF8     | en_US.utf8 | en_US.utf8 | =c/gpadmin         +            |         |          |            |            | gpadmin=CTc/gpadmin  test      | gpadmin | UTF8     | en_US.utf8 | en_US.utf8 |(4 rows)  # 退出命令行 postgres=# q [gpadmin@test-cdh-01 ~]$ 7.开启远程登陆7.1 为gp内的gpadmin用户创建密码[gpadmin@test-cdh-01 ~]$ psql -d postgres psql (9.4.24) Type "help" for help.  postgres=# postgres=# postgres=# alter role gpadmin with password "gpadmin"; ALTER ROLE postgres=#7.2 修改授权文件[gpadmin@test-cdh-01 ~]$ vim /home/gpadmin/data/master/gpseg-1/pg_hba.conf #在末尾追加如下内容  host     all         gpadmin         196.1.121.1/32   trust  # 重启 GreenPlum [gpadmin@test-cdh-01 ~]$ gpstop -M fast -a [gpadmin@test-cdh-01 ~]$ gpstart -a 配置说明
  连接方式
  允许连接的数据库
  连接的用户
  要连接gp的主机IP
  认证方式
  host
  all
  gpadmin
  196.1.121.1/32
  trust8. 常用命令与日志
  说明
  命令
  启动
  gpstart
  关闭
  gpstop
  状态
  gpstate
  日志地址
  /home/gpadmin/gpAdminLogs
  日志地址
  /home/gpadmin/data/mirror/gpseg1/pg_log
  日志地址
  /home/gpadmin/data/primary/gpseg0/pg_log

科技虚拟成真数字化技术已经改变人类生活和艺术世界德国广播联盟报道,过去几十年的技术变革改变了我们的世界,影响了生活的各个领域。无论有意识还是无意识,技术都会影响我们的日常生活并塑造我们的社交互动,甚至医疗保健沟通交流等。这些功能9月最全新能源汽车品牌上险量排行榜大河报豫视频记者祁驿2022年9月新能源汽车细分品牌累计终端零售销量排行出炉排名前十名的细分品牌依次为比亚迪特斯拉上汽通用五菱广汽埃安长安汽车哪吒汽车奇瑞新能源理想汽车蔚来零跑汽车丸美数字化采购系统上线,甄云助力国货护肤领军品牌数智化转型近日,A股上市公司广东丸美生物技术股份有限公司(以下简称丸美股份)携手甄云科技打造的一站式数字化采购管理系统成功上线。基于该系统,丸美股份将重塑企业采购业务体系,打通供应链端到端的企业服务界淘宝转道香港谋求上市,年平均客单价2。5万近日,企业服务平台猪八戒股份有限公司(以下简称猪八戒股份)向港交所递交招股书。猪八戒股份于2006年在重庆创办,公司通过平台智能匹配企业雇主的服务需求与服务商的技能,撮合企业雇主与果链不香了!企业从争抢订单到另谋出路国庆假期结束后一周内,刚发布不久的iPhone14Plus出现大幅破发,市场第三方渠道报价与官方定价差值达到400至1000元,颇有出师不利的意味。这背后的原因,除该产品自身市场竞上市湘企董事长谈二十大华纳药厂黄本东报告指引生物医药企业以创新驱动发展编者按10月16日上午10点,中国共产党第二十次全国代表大会在北京人民大会堂开幕。此次大会是在迈上全面建设社会主义现代化国家新征程向第二个百年奋斗目标进军的关键时刻召开的一次十分重低延迟耳机推荐,手持同品牌手机的朋友可优先考虑随着iQOO11系列的入网,iQOO首款真无线耳机也正式现身。不过与vivoTWSNeo极为相似的造型,被人调侃不愧是一家人出的耳机。而如海报iQOO首款游戏真无线耳机宣言,新耳机储能板块大爆发!电池供不应求,部分企业暂停接单!行业扩产规模已超2900亿点蓝字关注,不迷路10月18日,A股储能板块迎来大爆发。德赛电池巨星科技世嘉科技等多家公司涨停,科士达东方电气科华数据等公司跟涨。据中国能源报报道,受电池供不应求的影响,目前部分储一次出差三亚,与分公司女领导接触几天后,她突然向我表白了我对大城市并没有多少喜欢,有的时候甚至有点讨厌大城市的繁华,或许这跟我出生在内蒙古有很大关系,我喜欢的是蓝天白云,和目光看不到尽头的广阔天地。令我感到意外的是,一次平常的出差,却受真实如你我的生活,平凡如你我的人生对大多数人来说,生活的变化是缓慢的。今天和昨天似乎没有什么不同明天也可能和今天一样。也许人一生仅仅有那么一两个辉煌的瞬间,甚至一生都可能在平淡无奇中度过。这是一篇百万字的长篇巨著里聚焦党的二十大连线代表共话心声丨冯伟珍咱们工人有力量有前途冯伟珍代表云南网特派记者雷桐苏摄10月17日13时,党的二十大代表云天化云峰化工生产制造中心经理助理冯伟珍从北京打来视频电话,与所在支部及关联支部的同志连线,畅谈技能成才技术报国。
秋天客厅养6种花,除尘杀菌还增湿,好养好看有格调,对身心好秋天客厅养6种花,除尘杀菌还增湿,好养好看有格调,对身心好现在已经到了秋天了,空气干燥,很多花友都想在秋天养一些花草来美化环境,秋天的花卉长势旺盛,我们在养花的时候还能让身心放松下女排世锦赛一夜4场大逆转!夺冠热门翻车,中国女排竞争对手获胜女排世锦赛第二阶段首个比赛日结束,尽管中国女排轮休一天,但是进行的七场比赛,可以说是场场精彩,其中有四场出现了大逆转。夺冠大热门意大利意外翻车,之前保持不败的她们,复赛首轮对阵巴西40到21!大巴黎三线气势如虹,梅球王开挂护航,剑指5大纪录头条创作挑战赛新赛季开赛以来,法甲霸主大巴黎在主帅加尔蒂的带领下,开启了一段恐怖的三线不败之旅1法国超级杯决赛赛场上,大巴黎40横扫法国杯冠军南特,斩获赛季第一座冠军奖杯。2欧冠赛女排世锦赛积分榜巴西32意大利中国队暂跌落第四(10月5日)2022年世界女排锦标赛10月4号开启第2阶段首轮比赛,今天共进行7场比赛。中国与波多黎各比赛晚一天出场。E组日本31比利时,巴西32意大利,荷兰31阿根廷。焦点战日本队在先失一局山东泰山21梅州,卫冕稳了!三镇捅马蜂窝,冠军要鸡飞蛋打了三镇初来乍到,本来是中超一大喜事,但是过于急功近利,上半程直接挂5档起步,仗着口袋鼓鼓,大腿够粗,视圈内大佬如空气。旁边提醒它的人,要不被拳打脚踢,要不被揍得鼻青脸肿,三镇如此不懂中国女篮队员功劳排行榜top5,致敬巾帼英雄女篮世界杯结束了,中国女篮取得了前所未有的成功,现在,是时候给女篮姑娘们论功评分了,看看谁才是让中国女篮获得世界杯亚军的头号功臣。前两日,女篮队员杨力维接受记者采访时表示,如果要给这届国足太强了!中国U17男足90大胜柬埔寨U17足球助力团北京时间10月5日中午12时,2023巴林U17亚洲杯预选赛G组首轮,中国U17男足90大胜柬埔寨U17队取得开门红。王钰栋上演帽子戏法,张俊杰黄开俊蒯纪闻王昊斌黎明欧阳成都世乒赛中国女队五朵金花谁最美2022年成都世乒赛团体赛将于9月30日至10月9日进行,中国乒乓球女队队员为孙颖莎陈梦王曼昱王艺迪陈幸同作为国球的乒乓球,在各项世界大赛当中,都是中国队冲金的大户,如今的国乒女队全力备战巴黎奥运会丨世乒赛国乒男女队全胜晋级18决赛来源人民网原创稿人民网北京10月5日电(记者李乃妍)北京时间10月4日,成都世乒赛团体赛迎来第5个比赛日的争夺。最终,国乒男女队均战胜各自对手取得四连胜,以全胜战绩顺利晋级18决赛奥运阵容所向披靡,中国女乒3比0完胜匈牙利,闯进世乒赛女团八强北京时间10月5日消息,2022年世界乒乓球团体锦标赛在成都进入到第六日。女团18决赛,中国女乒派出奥运阵容,孙颖莎3比0战胜哈特布里奇,陈梦3比0战胜马达拉萨,王曼昱3比0战胜达中超0送武汉长江五连败,理查德处子球刘云中柱错失绝平北京时间10月5日,中超第21轮,武汉长江对阵成都蓉城。上半场成都蓉城占据着场上绝对主动权,控球率一度二八开,但是成都前场的进攻球员状态不佳,实质性的射门威胁不多。长江队通过密集的