记录manjaro linux下起angular + spring + nginx 项目环境

47次阅读

共计 1010 个字符,预计需要花费 3 分钟才能阅读完成。

我用的 linux 是 manjaro, 内核是 arch,有些东西和 ubantu,deepin 不太一样, 所以在起环境时遇到了一些没见过的问题。
安装 nodejs 与 npm
这俩我尝试下载安装官网上的包,但均以失败告终,原因不明,还好 manjaro 自带的软件库有最新版,可以很方便地进行安装。
甚至还有检查最新版本依赖的工具,省下了手动更新的麻烦。

接着通过一下命令完成全局安装 Angular CLI:
npm install -g @angular/cli

安装 nginx
这里我犯了一个错,在 nginx 官网上,我并没有注意自己的 linux 版本,就直接下载了一个 linux 包,结果配置半天各种失败,但官网上明确标示了各 linux 版本安装的方法。

遗憾的是 nginx 官网上并没有提供 manjaro/arch 版的包,但其实可以在 manjaro 的软件库当中找到 (不得不说这个软件库是真的强大,啥都有), 或者通过以下命令进行安装:
pacman -S nginx-mainline
安装完后使用命令 nging -t 会报如下错误:
nginx: [warn] could not build optimal types_hash, you should increase either types_hash_max_size: 2048 or types_hash_bucket_size: 64; ignoring types_hash_bucket_size
解决方法:在 etc/nginx 下找到 nginx 配置文件 nginx.conf,在如下位置添加配置信息,顺便 include 项目需要的 nginx 配置文件
types_hash_max_size 2048;
server_names_hash_max_size 2068;
types_hash_bucket_size 1024;

接着 nginx -t 测试配置文件是否正确。
git 配置
设置 git 用户名/邮箱
git config –global user.name [username]
git config –global user.email [email]
pull/fetch 免密操作
git config –global credential.helper store

查看配置信息
git config –list
安装 Webstorm 和 IDEA
有了前面的经验,这次我直接曲软件库里找,果不其然,真的有

不过 IDEA 是社区版,功能不全,想要专业版的只能曲官网下,手动配置图标启动,,这里就不赘述了

正文完
 0