文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

怎么用CentOS7+node.js+nginx+MySQL搭建服务器

2023-06-17 09:35

关注

本篇内容介绍了“怎么用CentOS7+node.js+nginx+MySQL搭建服务器”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

工具

安装git

执行:

sudo yum install git

安装nodejs

查看最新版本

下载

先进入/usr/src文件夹,这个文件夹通常用来存放软件源代码:

cd /usr/local/src/wget https://nodejs.org/dist/v4.6.0/node-v4.6.0.tar.gz

版本自己替换

解压

tar zxvf node-v4.6.0.tar.gz

编译安装

cd node-v4.6.0/./configure // 执行 node.js 安装包自带的脚本,修改相关的系统配置文件

发现报错了,提示系统中没有安装c编译器,接下来先安装c编译器

安装gcc

yum install gcc

安装g++

yum install gcc-c++

安装gfortran

yum install gcc-gfortran

重新执行:

cd node-v4.6.0/./configure // 执行 node.js 安装包自带的脚本,修改相关的系统配置文件make //编译 c源代码为 可执行的 linux程序

好慢啊。。。。。。难道是我买的最低配置的原因么。。。。。。

终于跑完了?,全程大约十几分钟,所以大家要耐心等待哦。。。。。。

sudo make install // 安装文件node –version //查看安装node的版本npm -v //查看npm的版本

现在已经安装了node.js, 可以开始部署应用程序, 首先要使用node.js的模块管理器npm安装express middleware 和forever(一个用来确保应用程序启动并且在需要时重启的非常有用的模块),其中g参数是把express安装到nodejs的lib目录,d参数表示同时安装依赖模块包:

npm install -gd express-generator forever

建立测试项目并执行

在/home文件夹下执行:

express testappcd testappnpm installnpm start

上面,第一条命令是创建express框架通用项目,第三条命令是安装依赖包,第四条是执行。

执行:

cat package.json

怎么用CentOS7+node.js+nginx+MySQL搭建服务器

第四条命令就相当于执行了node ./bin/www

怎么用CentOS7+node.js+nginx+MySQL搭建服务器

这样就运行成功了。

但是当我们关闭终端之后,进程就将结束,现在刚安装的forever就派上用场了,forever可以让进程在终端关闭之后继续运行:

forever start ./bin/www

我们可以使用下面命令查看forever运行的程序:

forever list

怎么用CentOS7+node.js+nginx+MySQL搭建服务器

现在我们就可以在浏览器中输入:公网ip + :3000,来访问我们的程序。

如果要修改3000端口,我们可以修改./bin/www文件中关于监听3000端口的字段。

停止运行:

forever stop 0 //0代表前面[0],这是当前进程的id

停止所有:

forever stopall

二、安装nginx

http请求是80端口,但是在linux上非root权限是无法使用1024以下端口的,并且因为安全原因,最好不要使用root权限登录服务器,所以无法直接用node.js程序监听80端口。因此我们需要使用nginx给node.js做反向代理,将80端口指向应用程序监听的端口(如node.js默认的3000端口)。

添加nginx仓库

yum install epel-release

下载nginx

yum install nginx

启用nginx服务

service nginx start

添加开机启动

systemctl enable nginx

修改nginx配置文件

vim /etc/nginx/nginx.conf //使用lnpm意见安装,nginx 目录: /usr/local/nginx/

添加:

server { listen 80; server_name jakexin.top,www.jakexin.top;  #绑定的域名 location / { proxy_set_header x-real-ip  $remote_addr; proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; proxy_set_header host   $http_host; proxy_set_header x-nginx-proxy true; proxy_set_header connection ""; proxy_http_version 1.1; proxy_pass http://127.0.0.1:3000;  #对应该的nodejs程序端口 } access_log /mnt/log/www/jakexin_access.log; #网站访问日志}

测试配置文件是否能够正确运行

nginx -t

怎么用CentOS7+node.js+nginx+MySQL搭建服务器

这样就是配置成功

重启nginx

service nginx restart

现在直接在浏览器中输入我们配置的域名就可以访问我们的项目了。

三、安装mysql

查看可用版本

yum list | grep mysql

怎么用CentOS7+node.js+nginx+MySQL搭建服务器

在centos 7中不能使用yum -y install mysql mysql-server mysql-devel安装,这样会默认安装mysql的分支mariadb。

mariadb数据库管理系统是mysql的一个分支,主要由开源社区在维护,采用gpl授权许可 mariadb的
的是完全兼容mysql,包括api和命令行,使之能轻松成为mysql的代替品。

正确的安装方法

众所周知,linux系统自带的repo是不会自动更新每个软件的最新版本(基本都是比较靠后的稳定版),所以无法通过yum方式安装mysql的高级版本。所以我们需要先安装带有当前可用的mysql5系列社区版资源的rpm包。

rpm -uvh http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpmyum repolist enabled | grep “mysql.-community.“ //查看当前可用资源

从上面的列表可以看出, mysql56-community/x86_64 和 mysql 5.6 community server 可以使用。

因此,我们就可以直接用yum方式安装了mysql5.6版本了。

yum -y install mysql-community-server

mysql基础配置

systemctl enable mysqld //添加到开机启动systemctl start mysqld //启用进程mysql_secure_installation
note: running all parts of this script is recommended for all mysql servers in production use! please read each step carefully!in order to log into mysql to secure it, we'll need the currentpassword for the root user. if you've just installed mysql, andyou haven't set the root password yet, the password will be blank,so you should just press enter here.enter current password for root (enter for none): ok, successfully used password, moving on...setting the root password ensures that nobody can log into the mysqlroot user without the proper authorisation.set root password? [y/n] y   [设置root用户密码]new password: re-enter new password: password updated successfully!reloading privilege tables.. ... success!by default, a mysql installation has an anonymous user, allowing anyoneto log into mysql without having to have a user account created forthem. this is intended only for testing, and to make the installationgo a bit smoother. you should remove them before moving into aproduction environment.remove anonymous users? [y/n] y   [删除匿名用户] ... success!normally, root should only be allowed to connect from 'localhost'. thisensures that someone cannot guess at the root password from the network.disallow root login remotely? [y/n] y [禁止root远程登录] ... success!by default, mysql comes with a database named 'test' that anyone canaccess. this is also intended only for testing, and should be removedbefore moving into a production environment.remove test database and access to it? [y/n] y  [删除test数据库] - dropping test database...error 1008 (hy000) at line 1: can't drop database 'test'; database doesn't exist ... failed! not critical, keep moving... - removing privileges on test database... ... success!reloading the privilege tables will ensure that all changes made so farwill take effect immediately.reload privilege tables now? [y/n] y  [刷新权限] ... success! all done! if you've completed all of the above steps, your mysqlinstallation should now be secure.thanks for using mysql! cleaning up...

四、操作mysql

配置远程连接

grant all privileges on . to ‘root'@'%' identified by ‘密码' with grant option; //添加授权的用户flush privileges; //刷新数据库

检测是否开启3306端口

netstat -tunlp[object Object]

看到3306端口被开启之后,我们就可以使用本地客户端远程访问数据库了

“怎么用CentOS7+node.js+nginx+MySQL搭建服务器”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯