随笔分类 -  linux

摘要:下载安装包 wget https://nodejs.org/dist/v16.16.0/node-v16.16.0-linux-x64.tar.gz 解压缩 mkdir /usr/local/nodejs tar -zxvf node-v16.16.0-linux-x64.tar.gz -C /us 阅读全文
posted @ 2022-07-29 17:20 gltttt 阅读(120) 评论(0) 推荐(0)
摘要:下载mysql仓库并安装 wget https://repo.mysql.com/mysql57-community-release-el7.rpm yum -y install mysql57-community-release-el7.rpm 安装mysql数据库 yum -y install 阅读全文
posted @ 2022-07-09 21:37 gltttt 阅读(291) 评论(0) 推荐(0)
摘要:下载源码包 wget http://nginx.org/download/nginx-1.20.1.tar.gz 解压 tar -zvxf nginx-1.20.1.tar.gz 安装依赖 yum -y install gcc gcc-c++ zlib-devel 预编译 ./configure - 阅读全文
posted @ 2022-07-09 14:17 gltttt 阅读(92) 评论(0) 推荐(0)
摘要:安装Postfix以发送通知邮件 yum install postfix 将postfix服务设置成开机自启动 systemctl enable postfix 启动postfix systemctl start postfix 下载镜像 wget https://mirrors.tuna.tsin 阅读全文
posted @ 2022-07-09 00:40 gltttt 阅读(62) 评论(0) 推荐(0)