0%

安装:

1.获取redis资源

1
  wget http://download.redis.io/releases/redis-4.0.8.tar.gz

2.解压

1
  tar xzvf redis-4.0.8.tar.gz

3.安装

1
2
3
4
5
6
7
  cd redis-4.0.8

  make

  cd src

  make install PREFIX=/usr/local/redis

4.移动配置文件到安装目录下

1
2
3
4
5
  cd ../

  mkdir /usr/local/redis/etc

  mv redis.conf /usr/local/redis/etc

5.配置redis为后台启动

1
vi /usr/local/redis/etc/redis.conf // 将daemonize no 改成daemonize yes

6.将redis加入到开机启动

1
  vi /etc/rc.local // 在里面添加内容:/usr/local/redis/bin/redis-server /usr/local/redis/etc/redis.conf (意思就是开机调用这段开启redis的命令)

7.开启redis

1
  /usr/local/redis/bin/redis-server /usr/local/redis/etc/redis.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
常用命令

  redis-server /usr/local/redis/etc/redis.conf //启动redis

  pkill redis //停止redis

卸载redis:

  rm -rf /usr/local/redis //删除安装目录

  rm -rf /usr/bin/redis-* //删除所有redis相关命令脚本

  rm -rf /root/download/redis-4.0.4 //删除redis解压文件夹

一、安装

sudo apt update

sudo apt-get install mysql-server # 安装MySQL服务端

以上两个命令 即安装成功

阅读全文 »

今天 pip install MySQL-python==1.2.5 报如下错误:

1
2
3
4
EnvironmentError: mysql_config not found

Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/6h/hchh3z9d6b33h11qh0wh__dh0000gn/T/pip-install-Rm43Qv/MySQL-python/

image

解决方法如下:

1)首先需要进行Python的安装

(2)进行mysql的安装,多种方式,偷懒一些可以直接使用brew指令

brew install mysql

(3)mysql_config not found的造成原因就是因为我们默认安装的路径没有被填加进去,所以使用export命令来设置下环境变量:

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

(4)进行MySQL-Python的安装:

pip install MySQL-Python

原文:https://blog.csdn.net/Megustas_JJC/article/details/78955958

一、安装

1
2
3
4
5
sudo apt install redis   # 安装redis

cd /etc/redis/redis.conf # 变更配置
注释bind 127.0.0.1 ::1
加 bind 0.0.0.0

二、命令

1
2
3
bin/sh /etc/init.d/redis-server start/stop/restart
systemctl start/stop/restart redis-server
/usr/bin/redis-server # 只是启动

第1步 – 导入公钥

1
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6

第2步 – 创建源列表文件MongoDB

1
echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list
阅读全文 »

数据库版本为5.7以上
1、选择数据库

1
use mydb1;

2、查看指定数据库表结构

1
select * from information_schema.TABLES where information_schema.TABLES.TABLE_SCHEMA='mydb1';

3、查看指定数据库的大小
比如说 数据库mydb1

1
select concat(round(sum(DATA_LENGTH/1024/1024),2), 'MB') as data from information_schema.TABLES where information_schema.TABLES.TABLE_SCHEMA='mydb1';

4、查看指定数据库的表的大小
比如说 数据库mydb1中b1表

1
select concat(round(sum(DATA_LENGTH/1024/1024),2), 'MB') as data from information_schema.TABLES where information_schema.TABLES.TABLE_SCHEMA='mydb1' and TABLE_NAME='b1';

一、主要区别

  • (1) like的内容不是正则,而是通配符。像mysql中的”like”,但是建议使用高级函数”instr”效率更高。

  • (2) rlike的内容可以是正则,正则的写法与java一样。需要转义,例如’\m’需要使用’\m’

  • (3) regexp == rlike 同义词 not like not regexp

阅读全文 »

1
2
3
ld: library not found for -lssl
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command 'clang' failed with exit status 1
1
export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl/lib/

然后再安装