JB环境搭建踩坑


Clion、Goland环境安装

下载地址: http://116.62.70.185/download/

一、Clion插件

安装完2021版本后创建一个project,并将插件压缩包拖入

1

拖入后会出现该插件,勾选图中选项,并点击reset后,每到过期时间会自动重置过期时间

2

二、Goland激活

安装完2022版本后,先不要启动,先后运行下图目录下的两个脚本,第一个脚本运行完出现完成弹框后再运行第二个脚本,等第二个脚本成功弹框后启动goland

3

输入下图中文件的激活码后即可使用

4

5

nginx代理下载网页配置

# 首先安装nginx
yum install nginx
# 安装完成后在/etc/nginx/目录下更改配置文件
vim /etc/nginx/nginx.conf

配置文件中增加服务:

server {
        listen       80;
        listen       [::]:80;
        server_name  _;
        
        root    /usr/share/nginx/html;
        
        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
        location /download {
        root /data;
        autoindex on;
        autoindex_exact_size off; # 关闭详细文件大小统计,让文件大小显示MB,GB单位,默认为b
        autoindex_localtime on; # 开启以服务器本地时区显示文件修改日期
        }
    }

保存退出后kill nginx进程后重新拉起

pkill nginx
systemctl restart nginx

nginx 常用命令

# 重新加载配置文件
nginx -s reload

# 重新打开日志文件
nginx -s reopen

# 快速停止或关闭Nginx
nginx -s stop

# 正常停止或关闭Nginx
nginx -s quit

# 查看 nginx 版本
nginx -v

# 查看 nginx 版本以及配置选项
nginx -V

# 不通过配置文件设置全局指令
nginx -g directives

# 测试配置文件是否正常
nginx -t

# 利用配置文件启动nginx
nginx -c /etc/nginx/nginx.conf

# 查看nginx 命令的帮助文档
nginx -h

文章作者: cfrost
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 cfrost !
  目录