centos8 安装python+redis+mysql+nginx

安装新建coding目录, 编译安装软件

mkdir /coding
cd coding

1. 编译安装 python

  • 安装依赖包
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel libffi-devel gcc make
  • 下载包(华为镜像)
wget https://mirrors.huaweicloud.com/python/3.8.5/Python-3.8.5.tar.xz
  • 解压
tar -zxvf Python-3.8.5.tar.xz
# 移动到自定义安装的目录
mv Python-3.8.5 /coding/py38
cd /coding/py38
  • 编译安装
./configure --prefix=/coding/py38
make && make install
  • 快捷方式
ln -s /coding/py38/bin/python3.8 /usr/bin/python3.8
ln -s /coding/py38/bin/python3.8 /usr/bin/python
ln -s /coding/py38/bin/pip3 /usr/bin/pip3
ln -s /coding/py38/bin/pip3 /usr/bin/pip
  • 验证安装成功
python --version
pip --version
  • yum 依赖的python2.7, 防止yum工作异常
find /usr/bin/ -type f -exec sed -i ':a;N;$!ba;s/\/usr\/bin\/python\([ \n]\)/\/usr\/bin\/python2.7\1/' {} \;

find /usr/libexec/ -type f -exec sed -i ':a;N;$!ba;s/\/usr\/bin\/python\([ \n]\)/\/usr\/bin\/python2.7\1/' {} \;

2. 编译安装nginx

  • 安装依赖
yum -y install gcc gcc-c++ autoconf automake make  pcre-devel openssl-devel
  • 下载包( 华为源)
wget https://mirrors.huaweicloud.com/nginx/nginx-1.21.6.tar.gz
  • 解压包
tar -zxvf nginx-1.21.6.tar.gz
mv nginx-1.21.6 /coding/nginx
cd /coding/nginx
  • 编译安装
./configure --prefix=/coding/nginx
make && make install
  • 常用命令
./nginx         //启动
./nginx -s stop //停止
./nginx -s reload   //重载配置
  • 查询启动
ps -ef | grep nginx
  • 创建软连接
ln -s /coding/nginx/sbin/nginx /usr/local/sbin
nginx           //启动
nginx -s stop   //停止
nginx -s reload
  • nginx永久加入到系统环境变量
echo 'export NGINX_HOME=/usr/local/nginx' >> /etc/profile
echo 'export PATH=$PATH:$NGINX_HOME/sbin' >> /etc/profile
source /etc/profile

3. 编译安装redis

  • 安装依赖
yum -y install gcc gcc-c++ automake autoconf libtool make
  • 下载包( 华为源)
wget https://mirrors.huaweicloud.com/redis/redis-6.2.5.tar.gz
  • 解压包
tar -zxvf redis-6.2.5.tar.gz
mv redis-6.2.5 /coding/redis
cd /coding/redis
  • 编译安装
 make PREFIX=/coding/redis install
  • 测试安装结果
make test
  • 配置文件说明(redis.conf)
    • 过滤注释行和空行: grep -v ^# redis.conf | grep -v ^$
bind 127.0.0.1  # 绑定IP
protected-mode yes
port 6379  # 端口
tcp-backlog 511
timeout 0
tcp-keepalive 300
daemonize no # 守护进程
supervised no
pidfile /var/run/redis_6379.pid
loglevel notice
logfile ""
databases 16
always-show-logo yes
# rdb 数据持久化( 保存操作到本地文件)
# 触发持久化, 每900s 超过一次更改,就保存,
save 900 1          # 经过900s, 超过1次,保存,以此类推
save 300 10         
save 60 10000    
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb  # 保存rdb文件
rdb-del-sync-files no
dir ./                 # rdb 保存rdb目录
replica-serve-stale-data yes
replica-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-diskless-load disabled
repl-disable-tcp-nodelay no
replica-priority 100
acllog-max-len 128
lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
replica-lazy-flush no
lazyfree-lazy-user-del no
oom-score-adj no
oom-score-adj-values 0 200 800
# aof 数据持久化( 保存操作到本地文件) 
appendonly no  # 默认关闭
appendfilename "appendonly.aof" #本地数据库文件名
appendfsync everysec  # 写入频率  可设置always 和 no
no-appendfsync-on-rewrite no
# aof 重写触发
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
# 
aof-load-truncated yes
aof-use-rdb-preamble yes

lua-time-limit 5000
slowlog-log-slower-than 10000
slowlog-max-len 128
latency-monitor-threshold 0
notify-keyspace-events ""
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-size -2
list-compress-depth 0
set-max-intset-entries 512
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
hll-sparse-max-bytes 3000
stream-node-max-bytes 4096
stream-node-max-entries 100
activerehashing yes
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit replica 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
hz 10
dynamic-hz yes
aof-rewrite-incremental-fsync yes
rdb-save-incremental-fsync yes
jemalloc-bg-thread yes
  • 开启服务端: ./redis-server
  • 客户端访问: ./redis-cli
  • 修改自启文件权限: chmod 775 /etc/init.d/redis
  • 设置自启: chkconfig redis on

4. 安装mysql

参考:[centos8安装mysql8.0.22教程](https://blog.csdn.net/qq_39150374/article/details/112471108)

下载包(rpm)

wget https://dev.mysql.com/get/mysql80-community-release-el8-1.noarch.rpm

yum install mysql80-community-release-el8-1.noarch.rpm

检查数据源:

yum repolist enabled | grep "mysql.*-community.*"

错误: No match for argument: mysql-community-server
解决方法:yum module disable mysql

安装 MYSQL 命令

yum install mysql-community-server

错误:Error:GPG check FAILED
解决方法:yum 安装时添加 --nogpgcheck 参数

yum -y install xx --nogpgcheck

启动服务

genie -s # 在wsl子系统中实现systemd
systemctl start mysqld

显示MySQL临时密码

grep 'temporary password' /var/log/mysqld.log

输出: 2022-03-14T02:26:55.430178Z 6 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: 33HnSqi/jFK#

登录

mysql -u root -p //输入上面生成的密码

密码修改

mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'Root_21root';

错误 ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

解决办法:
一定要先修改默认密码为: Root_21root 满足它的策略,再进行下面的操作:

# 查看密码策略
mysql> SHOW VARIABLES LIKE 'validate_password%'; 

# 修改密码长度:
mysql> set global validate_password.length=1; 
# 修改密码等级:
mysql> set global validate_password.policy=0; 

# 设置成自己想要的密码:
ALTER USER 'root'@'localhost' IDENTIFIED BY '123456';  

开放远程访问

# 1、先创建权限记录
mysql> create user 'root'@'%' identified by 'root123'; 
# 2、授权
mysql> grant all privileges on *.* to 'root'@'%' with grant option; 

更改加密方式

mysql> use mysql;
mysql> select user,plugin from user where user='root';
# 将用户的加密方式改为mysql_native_password。
mysql> alter user 'root'@'%' identified with mysql_native_password by 'Admin@123';
# 使权限配置项立即生效。
mysql> flush privileges;

解决错误:2059 - Authentication plugin ‘caching_sha2_password’ cannot be loaded:

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容