登录
首页 >  数据库 >  MySQL

Centos7常用安装和配置

来源:SegmentFault

时间:2023-02-16 15:38:04 160浏览 收藏

你在学习数据库相关的知识吗?本文《Centos7常用安装和配置》,主要介绍的内容就涉及到MySQL、Redis、Linux、nginx、centos,如果你想提升自己的开发能力,就不要错过这篇文章,大家要知道编程理论基础和实战操作都是不可或缺的哦!

  • yum安装wget

yum -y install wget
  • 删除ssh信息

ssh-keygen  -R '服务器IP'
  • mysql5.7

// 进入自己的下载数据文件没有需要创建
cd /home/data
// 下载mysql5.7安装源
wget https://repo.mysql.com//mysql57-community-release-el7-11.noarch.rpm
// 安装mysql5.7安装源
yum -y localinstall mysql57-community-release-el7-11.noarch.rpm
// 在线安装mysql(下载东西比较多,耐心等待)
yum -y install mysql-community-server
// 启动mysql
systemctl start mysqld
// 设置开机启动
systemctl enable mysqld
systemctl daemon-reload
// 修改root登录密码(在文件中找到默认密码 root@localhost:后面的随机字符串)
vim /var/log/mysqld.log
// 使用此密码登录root
mysql -u root -p
// 输入上面获取的密码正确登录之后
ALTER USER 'root'@'localhost' IDENTIFIED BY '新密码';
// 设置允许远程登录
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '新密码' WITH GRANT OPTION;
// 推出mysql
exit
// 重启myqsl
systemctl restart mysqld
### 如果服务器是 CentOS7,将 MySQL 服务加入防火墙 已经允许远程链接报错2003执行以下
sudo firewall-cmd --zone=public --permanent --add-service=mysql
// 返回success。然后继续执行
sudo systemctl restart firewalld
  • yum安装redis

// 安装
yum install redis
### 如果没有可用redis执行以下命令
**yum install epel-release**
// 启动
systemctl start redis.service
// 设置开机启动
systemctl enable redis.service
  • yum安装nginx

// 安装nginx使用yum进行Nginx安装时,Nginx配置文件在`/etc/nginx`目录下。
yum -y install nginx
// 卸载nginx
yum remove nginx
// 添加nginx源(安装报错执行此命令)
# rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
// 设置开机启动
systemctl enable nginx
// 启动服务
service nginx start
// 停止服务
service nginx stop
// 重启服务
service nginx restart
// 重载配置
service nginx reload
  • yum安装nodejs

### 安装
sudo yum install -y nodejs
### 卸载
yum remove nodejs npm -y
### 安装nodejs管理器
npm install -g n
### 安装最新版本
n latest
### 安装指定版本
n 8.11.3
### 切换指定版本
n
### 切换失败
### 查看安装位置
$ which node
/usr/local/bin/node #举个例子
### 打开变量文件
vim ~/.bash_profile
### 添加到尾部
export N_PREFIX=/usr/local #node实际安装位置
export PATH=$N_PREFIX/bin:$PATH
### 执行生效
source ~/.bash_profile
### 结局 yarn build 报错
npm config set scripts-prepend-node-path true

终于介绍完啦!小伙伴们,这篇关于《Centos7常用安装和配置》的介绍应该让你收获多多了吧!欢迎大家收藏或分享给更多需要学习的朋友吧~golang学习网公众号也会发布数据库相关知识,快来关注吧!

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表