httpd+MariaDB+php模块方式编译-创新互联

资讯 2024-07-09 阅读:60 评论:0
一、项目设计I. PROJECT DESTRUCTION创新互联公司是一家专注于成都网站建设、网站设计与策划设计,仲巴网站建设哪家好?创新互联公司做网站,专注于网站建设十余年,网设计领域的专业建站公司;建站业务涵盖...
美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

一、项目设计

I. PROJECT DESTRUCTION

创新互联公司是一家专注于成都网站建设、网站设计与策划设计,仲巴网站建设哪家好?创新互联公司做网站,专注于网站建设十余年,网设计领域的专业建站公司;建站业务涵盖:仲巴等地区。仲巴做网站价格咨询:13518219792
  •     CentOS 6.6:配置双网卡,提供编译开发环境 ;

    & nbsp; & nbsp; & nbsp; & nbsp; & nbsp; CentOS 6.6: Configure double-net cards to provide compilation and development environment & nbsp;

  •     编译安装httpd 2.4.9:建立两个虚拟主机站点www.a.com(172.16.13.20)和 www.b.org(13.21);

    & nbsp; & nbsp; & nbsp; & nbsp; & nbsp; compiled and installed httpd 2.4.9: Establishment of two virtual hosting sites: www.a.com(172.16.13.20) and   www.b.org (13.21);

  •     二进制码格式安装MariaDB;

    & nbsp; & nbsp; & nbsp; & nbsp; and installation of MariaDB in binary code format;

  •     php-5.4.26附加为httpd模块进行编译安装;

    & nbsp; & nbsp; & nbsp; & nbsp; & nbsp; php-5.4.26 attached to the compilation and installation of the httpd module;

  •     编译安装xcache,实现php模块加速;

    & nbsp; & nbsp; & nbsp; & nbsp; compile and install xcache to accelerate the php module;

  •     使用3w.a.com实现drupal

    & nbsp; & nbsp; & nbsp; & nbsp; use 3w.a.com to achieve drupal

  •       使用3w.b.org 以https方式实现phpMyAdmin

    & nbsp; & nbsp; & nbsp; & nbsp; & nbsp; & nbsp; & use 3w.b.org to achieve phpMyAdmin by https


二、配置双网卡,绑定ip,提供开发环境

ii. Configure the two-net cards, bind the ip and provide the development environment

1.给虚拟机centos6.6添加两块网卡

1. Add two webcards to the virtual computer Centos 6.6

2.修改/etc/sysconfig/network-scripts/ifcfg-eth0 IPADDR=172.16.13.20

2. Modification/etc/sysconfig/network-scripts/ifcfg-eth0 IPADDR = 172.16.13.20

  新建/etc/sysconfig/network-scripts/ifcfg-eth2 IPADDR=172.16.13.21

& nbsp; & nbsp; new/etc/sysconfig/network-scripts/ifcfg-eth2 IPADDR = 172.16.13.21

3.提供编译开发环境:

3. Provision of compilation and development environment:

    yum grouplist

    yum groupinstall "Development tools" "Server Platform Development"


  三、编译安装apache

& nbsp; & nbsp; iii. compile and install apace

1.解决依赖关系

1. Addressing dependency

  httpd-2.4.9需要较新版本的apr和apr-util的支持

& nbsp; & nbsp; httpd-2.4.9 Support for newer versions of apr and apr-util

  从网上获取 最新版本 apr-1.5.0.tar.bz2和 apr-util-1.5.3.tar.bz2

& nbsp; & nbsp; Obtaining the most recent versions from the Web & nbsp; apr-1.5.0.tar.bz2 and   apr-util-1.5.3.tar.bz2

  (1)编译安装apr

& nbsp; & nbsp; (1) compile and install apr

   tar xf apr-1.5.0.tar.bz2

   cd apr-1.5.0

   http://gdruijie.cn/article/configure --prefix=/usr/local/apr

   make && make install

  (2)编译安装apr-util

& nbsp; & nbsp; (2) compile and install apr-util

   tar xf apr-util-1.5.3.tar.bz2

   cd apr-util-1.5.3

   http://gdruijie.cn/article/configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr

   make && make install

   (3)安装依赖包pcre-devel

& nbsp; & nbsp; & nbsp; (3) Installation Reliance Packagepcre-devel

   yum install pcre-devel

2.编译安装apache

Compilation and installation of apace

  下载httpd-2.4.9到本地

& nbsp; & nbsp; downloading httpd-2.4.9 to local

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

 # tar xf httpd-2.4.9.tar.bz2

 # cd httpd-2.4.9

 #  http://gdruijie.cn/article/configure --prefix=/usr/local/apache --sysconfdir=/etc/httpd24 --enable-so --enable-ssl --enable-cgi --enable-rewrite --with-zlib --with-pcre --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --enable-modules=most --enable-mpms-shared=all --with-mpm=event

 # make && make install

3.修改httpd的主配置文件,设置其pid文件路径

3. Modify the main profile of httpd and set its Pid file path

 # vim /etc/httpd24/httpd.conf 添加内容

& nbsp; # vim/etc/httpd24/httpd.conf  add

 PidFile "/var/run/httpd.pid"

4.提供SysV风格服务脚本

4. Provision of SysV-style service scripts

# cp  /etc/rc.d/init.d/httpd  /etc/rc.d/init.d/httpd24

# vim /etc/rc.d/init.d/httpd

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

5.设置apachectl默认读取路径

5. Sets the default reading path for apachartl

# vim /etc/profile.d/httpd.sh 添加内容

#vim/etc/profile.d/httpd.sh Add

  export PATH=/usr/local/apache/bin:$PATH

6.设置头文件软链接路径

6. Set up a soft link path for headers

 ln -sv /usr/local/apache/include/ /usr/include/httpd

7.配置两个虚拟主机站点

Configure two virtual host sites

  (1)创建两个站点主页目录

& nbsp; & nbsp; (1) Create two site homepage directories

  # mkdir /vhosts/{a.com,b.org}/html -pv

  # vim /vhosts/a.com/html/index.html

  # vim /vhosts/b.org/html/index.html

   (2)开启虚拟站点及其模块文件

& nbsp; & nbsp; & nbsp; (2) opening virtual sites and their modular files

  #vim /etc/httpd24/httpd.conf  开启

& nbsp; & nbsp; #vim/etc/httpd24/httpd.conf & nbsp; open

    Include /etc/httpd24/extra/httpd-vhosts.conf

  开启模块:

& nbsp; & nbsp; open module:

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

  (3)172.16.13.20和172.16.13.21

& nbsp; & nbsp; (3) 172.16.13.20 and 172.16.13.21

  # vim /etc/httpd24/extra/httpd-vhosts.conf

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

8.给172.16.13.21(3w.b.org)开启ssl,实现https访问b.org

Opening of ssl for 172.16.13.21 (3w.b.org) to achieve https accessb.org

  (1)给b.org创建私钥和证书申请

& nbsp; & nbsp; (1) request to create private keys and certificates for b.org

  # mkdir -pv /etc/httpd24/ssl

  # cd /etc/httpd24/ssl

  # (umask 077; openssl genrsa -out server.key 2048)

   # openssl req -new -key http://gdruijie.cn/article/server.key -out http://gdruijie.cn/article/server.csr -days 90

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

  (2)将证书申请发给私建CA服务器,签发证书后发还给b.org

& nbsp; & nbsp; (2) send the certificate application to a privately built CA server and return it to b.org after issuing the certificate

   # scp http://gdruijie.cn/article/server.csr root@172.16.13.201:/tmp

  切换到172.16.13.201,签发证书

& nbsp; & nbsp; switch to 172.16.13.201, issue certificate

   # openssl ca -in /tmp/server.csr -out /tmp/server.crt -days 90

  # scp /tmp/server.crt root@172.16.13.20:/etc/httpd24/ssl

   (3)开启ssl功能,配置ssl.conf文件

& nbsp; & nbsp; & nbsp; (3) start ssl functions and configure ssl.conf files

   # vim /etc/httpd24/httpd.conf开启

& nbsp; & nbsp; & nbsp; # vim/etc/httpd24/httpd.conf

   Include /etc/httpd24/extra/httpd-ssl.conf

   开启相关模块:

& nbsp; & nbsp; & nbsp; Open relevant modules:

   LoadModule ssl_module modules/mod_ssl.so

   LoadModule socache_shmcb_module modules/mod_socache_shmcb.so

   配置ssl.conf文件

& nbsp; & nbsp; & nbsp; Configure ssl.conf files

    #  vim /etc/httpd24/extra/httpd-ssl.conf

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

  (4)开启httpd24服务

& nbsp; & nbsp; (4) Opening of httpd24 service

  #httpd -t              (查看配置文件有没有错误)

& nbsp; & nbsp; #httpd-t & nbsp;                                 see if there is an error in the configuration file)

  # service httpd24 start  ( 注意:一定是 httpd24不能写成http,因为虚拟机上装有httpd-2.2)

& nbsp; & nbsp; #service httpd24 start & nbsp; (Note: httpd24 must not be written as http, because the virtual machine is equipped with httpd-2.2)

  # ss -tnl              (查看对应的80端口,和ssl对应的443端口是不是开启)

& nbsp; & nbsp; #ss-tnl & nbsp;                                                 & &                                                                           & & & nbsp;               &             &     &   &

  (5)测试证书有效性

& nbsp; & nbsp; (5) test certificate validity

  # scp /etc/pki/CA/cacert.pem root@172.16.13.21:/tmp (将根证书复制到b.org主机/tmp目录中)

& nbsp; & nbsp; #scp/etc/pki/CA/caert.pem root@172.16.13.21:/tmp (copy root certificate in b.org host/tmp directory)

  #openssl s_client connect 172.16.13.21:443 CAfile /tmp/cacert.pem

 (在b.org主机测试证书可不可以使用,如果返回值为9,说明两台主机的时间不一致,返回值 为21说明给的路径错误,返回值为0说明证书有效可用)

& nbsp; (The return value of the host certificate in b.org can be used if the return value of the certificate is 9, indicates that the time of the two hosts is inconsistent, the return value is 21 for the path error given, the return value is 0 for the certificate is valid)

9.测试

9. Testing

  (1)在windonws浏览器上输入172.16.13.20测试a.com

& nbsp; & nbsp; (1) Enter 172.16.13.20 testa.com on the windonws browser

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

  (2)在浏览器输入https://172.16.13.21测试b.org

& nbsp; & nbsp; (2) Enter on browser https://172.16.13.21 testb.org

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation


四、安装二进制格式MariaDB

IV. Installation of the binary format MariaDB

1.新建逻辑空间

1. New logical space

准备一个大小20G的分区sda5,磁盘系统为8e

Prepare a 20G-sized partition sda5, disk system 8e.

pvcreate /dev/sda5

vgcreate myvg /dev/sda5

lvcreate -L 10G -n mydata myvg

mke2fs -t ext4 -L MYDATA /dev/myvg/mydata

编辑/etc/fstab文件实现开机自动挂载

Automatically mount edit/etc/fstab files

创建/data目录挂载逻辑空间mydata

Create/data directory mount logic spacemydata

mount /dev/myvg/mydata /data

2.下载MariaDB安装包并解压至 /usr/local下

Download MariaDB installation packages and unpressurize to
under /usr/local

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

3.所有的程序都应该以普通用户身份运行

All programs should run as regular users

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

4.初始化mysql

4. Initialization of mysql

把配置文件的模板样本复制一份到 /etc/mysql

Copy a template sample of the profile to  / etc/mysql

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

cp /usr/local/mysql/support-files/my-large.cnf /etc/mysql/my.cnf

vim /etc/mysql/my.cnf添加一些内容

vim /etc/mysql/my.cnf add something

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

执行初始化脚本

Execute Initial Script

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

5.编辑数据库服务脚本实现开机自动启动cp /usr/local/mysql/support-files/mysql.server /etc/rc.d/init.d/mysqld

5. Edit database service scripts to autostart cp/usr/local/mysql/support-files/mysql.server/etc/rc.d/init.d/mysqld

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

使用ss -tnl查看3306端口是不是开启

Use ss-tnl to see if port 3306 is open.

6.修改服务启动路径,防止找不到mysqld服务的路径

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

7.测试一下MariaDB是不是可以使用

7. Test if MariaDB can be used.

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

给MariaDB添加默认用户密码,然后使用密码登录:

Add a default user password to MariaDB and then log in using the password:

> SET PASSWORD FOR 'root'@'localhost'=PASSWORD ('123456')

> exit

# mysql -uroot -h227.0.0.1 -p123456

>会提示登录成功

> Reminds login successful


  五、编译安装php-5.4.40为httpd的模块

& nbsp; & nbsp; v. development and installation of php-5.4.40 to httpd module

1.解决依赖关系:

Addressing dependency:

 #yum -y groupinstall "Desktop Platform Development"

 #yum -y install bzip2-devel libmcrypt-devel

2.编译安装php-5.5.40

2. Compilation and installation of php-5.5.40

  下载php-5.4.40.tar.bz2

& nbsp; & nbsp; downloading php-5.40.tar.bz2

  # tar xf php-5.4.40.tar.bz2

  # cd php-5.4.40

  # http://gdruijie.cn/article/configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-openssl --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-mbstring --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml  --enable-sockets --with-apxs2=/usr/local/apache/bin/apxs --with-mcrypt  --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d --with-bz2  --enable-maintainer-zts

  # make && make install

  为php提供配置文件:

& nbsp; & nbsp; profile for php:

  #cp php.ini-production /etc/php/php.ini

3.编辑apache配置文件httpd.conf,实现支持php格式显示网页

3. Edit the apache profile httpd.conf to achieve support for php format display page

  # vim /etc/httpd/httpd.conf

 (1)添加如下二行

& nbsp; (1) Add the following two lines:

  AddType application/x-httpd-php  .php

  AddType application/x-httpd-php-source  .phps

 (2)定位至DirectoryIndex index.html

& nbsp; (2) locate to DirectoryIndex index.html

  修改为:

& nbsp; & nbsp; Amend to read:

  DirectoryIndex  index.php  index.html

 (3)添加index.php主页

& nbsp;(3) Add index.php homepage

  #vim /vhosts/b.org/html/index.php 添加内容如下

& nbsp; & nbsp; #vim/vhosts/b.org/html/index.php

   

   $link=mysql_connect('127.0.0.1','root','123456');

   if ($link)

    echo "OK";

   else

    echo "Failure";

   mysql_close();

  ?>

而后重新启动httpd,或让其重新载入配置文件即可测试php是否已经可以正常使用。

Then restarting httpd, or reloading it into the configuration file, will test if php is already functional.

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation


 六、在b.org站点下安装使用phpMyAdmin

& nbsp;vi. Installation of phpMyAdmin under site b.org

 1、下载安装包phpMyAdmin-4.0.5-all-languages.zip

& nbsp;1 Download installation package phpMyAdmin-4.0.5-all-languages.zip

 2、解压缩至/vhosts/b.org/html/pma

& nbsp;2, uncompressed to /vhosts/b.org/html/pma

  # unzip phpMyAdmin-4.0.5-all-languages.zip

  # mv phpMyAdmin-4.0.5-all-languages /vhosts/b.org/html/pma

 3、测试站点可不可以访问

& nbsp;3, test sites accessible

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation


七、在a.com站点下安装使用drupal

VII. Installation of drupal under a.com site

 1、下载安装包至家目录

& nbsp;1 Download installation package to home directory

   # mv Discuz_X3.2_SC_UTF8.zip /vhosts/a.com/html/

  # cd /vhosts/a.com/html/

  # unzip Discuz_X3.2_SC_UTF8.zip

 2、在浏览器输入172.16.13.20/upload

& nbsp;2 Enter 172.16.13.20/upload on browser

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation


八、安装xcache,为php加速

VIII. Installation of xcache to accelerate php

1、安装xcache

1. Installation of xcache

  # tar xf xcache-3.0.3.tar.gz

  # cd xcache-3.0.3

  # /usr/local/php/bin/phpize  (使用php自带的phpize命令使扩展的xcache模块可以编译进行)

& nbsp; & nbsp; #/usr/local/php/bin/phpize & nbsp; (extended xcache modules can be compiled using php-banded php commands)

  # http://gdruijie.cn/article/configure --enable-xcache --with-php-config=/usr/local/php/bin/php-config

  # make && make install

安装结束时,会出现类似如下行:

At the end of the installation, the following lines would appear:

Installing shared extensions:    /usr/local/php/lib/php/extensions/no-debug-zts-20100525/

2、编辑php.ini,整合php和xcache:

2 Edited php.ini, integrating php and xcache:

   首先将xcache提供的样例配置导入php.ini

& nbsp; & nbsp; & nbsp; & first import samples from xcache into php.ini

  # mkdir /etc/php.d

  # cp xcache.ini /etc/php.d

接下来编辑/etc/php.d/xcache.ini,找到extension开头的行,修改为如下行:

Next, edit/etc/php.d/xcache.ini, find the line at the beginning of the Extension and amend it to read as follows:

extension=/usr/local/php/lib/php/extensions/no-debug-zts-20100525/xcache.so

注意:如果php.ini文件中有多条extension指令行,要确保此新增的行排在第一位。

N.B. If php.ini has several directives, make sure that this new line is ranked first.

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

3、使用ab命令测试php网页速度

3. Test php web speed with aab command

ab -n 1000 -c 500 https://172.16.13.21/pma/index.php

httpd + MariaDB + php模块方式编译

httpd+MariaDB+php module compilation

另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。


分享文章:httpd+MariaDB+php模块方式编译-创新互联
文章路径:http://gdruijie.cn/article/jgdoo.html
美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址
文字格式和图片示例

注册有任何问题请添加 微信:MVIP619 拉你进入群

弹窗与图片大小一致 文章转载注明

分享:

扫一扫在手机阅读、分享本文

上一篇:hb交易平台 下一篇:IDR 到 BTC
发表评论
平台列表
美化布局示例

欧易(OKX)

  全球官网 大陆官网

币安(Binance)

  官网

火币(HTX)

  官网

Gate.io

  官网

Bitget

  官网

deepcoin

  官网
热门文章
  • 支付領域投下震撼彈!美國數位銀行Chime疑與GuardPay 神盾支付合作!

    支付領域投下震撼彈!美國數位銀行Chime疑與GuardPay 神盾支付合作!
    2020年,新冠肺炎(COVID-19)疫情加速數位貨幣進展。例如:2019年4月,國際清算銀行(BIS)的調查顯示,在全球66家中央銀行中,沒有一家計畫發行跨境支付的數位貨幣。惟到了2020年10月,BIS支付委員會主席康利夫(Jon Cunliffe)指出,肺炎疫情拉高民眾對無現金支付的需求,迫使各國加快數位貨幣的研發進程日本與韓國於2021年進入數位貨幣試驗階段。直到2019年12月,美國聯邦準備理事會(Fed)都尚無數位貨幣規劃,惟到了2020年2月,Fed已開始研擬...
  • 区块链:交易系统开发指南

    区块链:交易系统开发指南
    播报编辑《区块链:交易系统开发指南》使用通俗易懂的语言,从技术的角度详细介绍了区块链交易系统应有的功能架构及工作原理,让人们能够张开双臂轻松地拥抱区块链技术,享受区块链交易系统带来的惊喜与成就感。《区块链:交易系统开发指南》共分 7 章,第 1~2 章主要介绍区块链及数字货币的基本概念,以及各种公有链的 API 接口;第3~5 章主要介绍区块链交易系统的分类架构及功能; 6 章主要介绍区块链交易系统面临的问题及演进方向;第 7 章对全书做了总结。《区块链:交易系统开发指南》是...
  • 5.14加密货币价格:BTC突破6.2万美元以太坊和山寨币反映市场情绪

    5.14加密货币价格:BTC突破6.2万美元以太坊和山寨币反映市场情绪
    今天,随着比特币(BTC)的价格突破62 000美元的门槛,顶级加密货币的价格反弹了。 此外,以铁大幅上涨,维持在2 900美元的水平。 此外,其他顶尖山硬币,如索拉纳(SOL )、XRP、卡达诺(ADA )也大幅上涨。    今天密钥加密货币价格 1. 比特币价格    在5月14日星期二撰写本文时,比特币价格上升了2.57%,达到62 487.50美元。 另一方面,在过去24小时内,交易量从65.26 % 急剧上升至277亿美元。 与此同时,加密货币的市场价值为...
  • OKEx回应用户质疑:合约交易非期货 平台无机器人

    OKEx回应用户质疑:合约交易非期货 平台无机器人
       热点点 自选股份 数据中心 数据中心 研究和资料中心 资金流动 模拟交易 客户客户 具体来说,OKEx回答用户的问题:合同交易不是期货,平台不是机器人。 金融同步化,3月22日。    昨天下午,OKEx公司就维护先前用户线下的权利问题对同步财务公司作出了回应,指出OKEx公司提供的合同交易不是期货交易,在旗下的业务中没有正式的机器人。 同时,OKEX称,它不会以非法为由对任何投资损失索赔作出答复。 答复全文如下: 同步你的财务! 近日来,...
  • 0.00006694个比特币等于多少人民币/美金

    0.00006694个比特币等于多少人民币/美金
    0.00006694比特币等于多少人民币?根据比特币对人民币的最新汇率,0.00006694比特币等于4.53424784美元/32.5436 16人民币。比特币(BTC)美元(USDT)人民币(CNY)0.000066944.53424784【比特币密码】32.82795436 16比特币对人民币的最新汇率为:490408.64 CNY(1比特币=490408.64人民币)(1美元=7.24人民币)(0.00006694USDT=0.0004846456 CNY)汇率更新时...
标签列表