glibc

CentOs7安装mysql

六月ゝ 毕业季﹏ 提交于 2020-12-29 00:32:49
yum install perl perl-devel cd /usr/local/src wget https://cdn.mysql.com//Downloads/MySQL-5.6/mysql-5.6.40-linux-glibc2.12-x86_64.tar.gz tar zxvf mysql-5.6.40-linux-glibc2.12-x86_64.tar.gz mv mysql-5.6.40-linux-glibc2.12-x86_64 /usr/local/mysql useradd -s /sbin/nologin mysql 创建存放数据的目录: mkdir -p /data/mysql chown -R mysql:mysql /data/mysql/ 执行: cd /usr/local/mysql ./scripts/mysql_install_db --user=mysql --datadir=/data/mysql 配置文件: cp support-files/my-default.conf /etc/my.cnf cp support-files/mysql.server /etc/init.d/mysqld chmod 755 /etc/init.d/mysqld vim /etc/init.d/mysqld ,在配置里找到 basedir

CentOS安装两个MYSQL5.7.21

妖精的绣舞 提交于 2020-12-26 12:18:05
项目上正式是MySQL5.7.21-log版本,但是本地测试是使用的MySQL5.7.22,蛋疼的客户非得统一版本,本着学习的精神,自己折腾了一天、 于是把测试数据库也撞上了MySQL5.7.21 第一步 下载:mysql-5.7.21-linux-glibc2.12-x86_64 第二步 上传、解压mysql-5.7.21-linux-glibc2.12-x86_64 ,使用tar -xvf mysql-5.7.21-linux-glibc2.12-x86_64,将解压的文件重命名并移到/usr/local 第三步 在mysql-5.7下新增文件夹data,var,etc备用 第四步 创建数据库配置文件,如果在/etc(不是自己创建的)下有my.cnf则修改,如果没有则touch新建 # For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html # *** DO NOT EDIT THIS FILE. It‘s a template which will be copied to the # *** default location during install, and will be

Linux下编译国标GB28181视频推流组件EasyGBD报错,如何解决?

两盒软妹~` 提交于 2020-12-23 15:26:45
EasyGBD。国标EasyGBD通过国标GB28181协议进行视频流媒体传输,在使用手机等移动设备进行执法或者户外监控的时候,能够实现户外移动监控的网页无插件直播。 最近我们重新编译了EasyGBD,发现出现undefined reference to 'clock_gettime@GLIBC_2.17 '的报错。考虑到之前的情况,其实我们在Linux下编译其他TSINGSEE青犀视频平台时,也接触过此类报错: undefined reference to ‘xxxxxxxx@GLIBC_xxxxx’。 针对undefined reference to 'xxxxxxxx@GLIBC_xxxxx’类似错误,可以通过升级GLIBC版本来解决相关问题。升级之前查询当前系统的GLIBC版本。 以下从GLIBC_2.12升级到2.17的步骤说明: 1.下载对应的glibc版本,如 undefined reference to `clock_gettime@GLIBC_2.17’ 需要下载glibc2.17版本 2.安装部署 tar -xf glibc-2.17.tar.gz cd glibc-2.17 mkdir build cd build …/configure --prefix=/usr --disable-profile --enable-add-ons --with

mysql安装配置(linux)

你离开我真会死。 提交于 2020-12-15 08:48:36
个人记录 建立个目录执行下面命令下载tar包 wget http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.13-linux-glibc2.5-x86_64.tar.gz 解压后为了方便建立个软链接 ln -s /home/mysql/mysql-5.7.13-linux-glibc2.5-x86_64 /usr/local/mysql mysql目录下创建data目录 mkdir data chmod -R 777 /usr/local/mysql/data/ 开启ssl链接 bin/mysql_ssl_rsa_setup 创建root账号(记下自动生成随机密码) sudo yum install libaio bin/mysqld --initialize --user=root 加入服务 cp support-files/mysql.server /etc/init.d/mysql.server 添加环境变量: vi /etc/profile export MYSQL_HOME=/usr/local/mysql export PATH=$PATH:$MYSQL_HOME/bin 保存并使其生效 source /etc/profile 登录mysql mysql -uroot –p上面生成的随机密码 设置随机密码 use

Why debug files of libstdc++ are installed via glibc-debuginfo and gcc-debuginfo but not something called libstdc++-debuginfo?

若如初见. 提交于 2020-12-15 05:54:02
问题 When I was trying to figuring out this question What can I do differently after I install those missing debug info packages for gdb? asked by myself, I noticed that when I try to install the libstdc++ debug infos (test distro is CentOS 7.2 ): debuginfo-install libstdc++-4.8.5-44.el7.x86_64 What the system is going to install are: [root@VM-0-17-centos debug]# debuginfo-install libstdc++-4.8.5-44.el7.x86_64 Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile

Why debug files of libstdc++ are installed via glibc-debuginfo and gcc-debuginfo but not something called libstdc++-debuginfo?

廉价感情. 提交于 2020-12-15 05:47:20
问题 When I was trying to figuring out this question What can I do differently after I install those missing debug info packages for gdb? asked by myself, I noticed that when I try to install the libstdc++ debug infos (test distro is CentOS 7.2 ): debuginfo-install libstdc++-4.8.5-44.el7.x86_64 What the system is going to install are: [root@VM-0-17-centos debug]# debuginfo-install libstdc++-4.8.5-44.el7.x86_64 Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile

How can I change the following static linked program into dynamic linked program?

时光毁灭记忆、已成空白 提交于 2020-12-14 23:48:40
问题 I have already figure out how to staticly link v8 with my own GLIBC/STDC++. $(GCC_ROOT)/bin/g++ samples/bench.cpp -o bench -isystem$(GLIBC_ROOT)/include/ -I. -Iinclude -isystem$(GLIBC) -nodefaultlibs -DV8_COMPRESS_POINTERS -static $(V8_OBJ)/libv8_monolith.a -Wl,--start-group $(GCC_ROOT)/lib64/libstdc++.a $(GLIBC_ROOT)/lib/libpthread.a $(GLIBC_ROOT)/lib/libdl.a $(GLIBC_ROOT)/lib/libm.a $(GLIBC_ROOT)/lib/librt.a $(GCC_GCC)/libgcc.a $(GCC_GCC)/libgcc_eh.a $(GCC_GCC)/libcommon.a $(GLIBC_ROOT)/lib

How can I change the following static linked program into dynamic linked program?

故事扮演 提交于 2020-12-14 23:39:05
问题 I have already figure out how to staticly link v8 with my own GLIBC/STDC++. $(GCC_ROOT)/bin/g++ samples/bench.cpp -o bench -isystem$(GLIBC_ROOT)/include/ -I. -Iinclude -isystem$(GLIBC) -nodefaultlibs -DV8_COMPRESS_POINTERS -static $(V8_OBJ)/libv8_monolith.a -Wl,--start-group $(GCC_ROOT)/lib64/libstdc++.a $(GLIBC_ROOT)/lib/libpthread.a $(GLIBC_ROOT)/lib/libdl.a $(GLIBC_ROOT)/lib/libm.a $(GLIBC_ROOT)/lib/librt.a $(GCC_GCC)/libgcc.a $(GCC_GCC)/libgcc_eh.a $(GCC_GCC)/libcommon.a $(GLIBC_ROOT)/lib

4 个场景揭秘,如何低成本让容器化应用 Serverless 化?

萝らか妹 提交于 2020-12-12 15:13:27
作者 | changshuai 来源 | Serverless 公众号 FaaS 的门槛 Serverless 形态的云服务帮助开发者承担了大量复杂的扩缩容、运维、容量规划、云产品打通集成等责任,使得开发者可以专注业务逻辑、提高交付速度 (Time-to-market) ,持续优化成本。Function-as-a-Service (FaaS) 作为云上最早也是应用最广泛的 Serverless 计算形态,在几年的时间内吸引了大批开发者,逐渐建立了 Serverless 优先的选型逻辑。然而从传统应用迁移到 FaaS 在开发者体验上还面临诸多挑战: 环境不统一 :各厂商定义的交付物格式,运行环境兼容性、丰富度都不尽相同,需要开发者适配,甚至重新编译; 学习成本 :打包依赖库、构建成压缩代码包和熟悉的开发部署方式不同; 服务限制 :如代码包限制在百 MB 级别,迫使交付物代码依赖分离,加大管理和发布难度; 交付物缺乏版本管理 :格式不标准,最佳实践不统一,需要开发者自行负责; 生态不成熟 :缺少流行开源工具(如 CI/CD 流水线)的支持和集成。 另一方面,容器在可移植性和交付敏捷性上实现了颠覆式创新。围绕容器的生态沉淀非常丰富且成熟,被广泛接受使用,应用容器化正在快速成为开发和部署的事实标准。然而容器本身并没有减轻运维、扩缩容、闲置成本、和云服务集成等难题。 函数计算支持容器镜像

解决 /lib64/libc.so.6: version `GLIBC_2.14' not found 的问题

我怕爱的太早我们不能终老 提交于 2020-12-08 20:42:53
解决 /lib64/libc.so.6: version `GLIBC_2.14' not found 的问题 参考文章: (1)解决 /lib64/libc.so.6: version `GLIBC_2.14' not found 的问题 (2)https://www.cnblogs.com/playboysnow/p/7327270.html 备忘一下。 来源: oschina 链接: https://my.oschina.net/u/4438370/blog/4780912