Git、Nginx、Centos7、Linux、RabbitMq、windows10、Tomcat等开发常用简单命令(未完)

Git、Nginx、Centos7、Linux、RabbitMq、windows10、Tomcat等开发常用简单命令(未完),第1张

Git、Nginx、Centos7、Linux、RabbitMq、windows10、Tomcat等开发常用简单命令(未完) Git

图片是从网上找的,觉得非常不错,不过忘记保存原地址了,很对不起原作者,如果有读者知道这张图的出处,可以私信我,我会给图上添加。

配置用户名和邮箱

git --version 查看git的版本信息
git config --global user.name 获取当前登录的用户
git config --global user.email 获取当前登录用户的邮箱

如果刚没有获取到用户配置,则只能拉取代码,不能修改 要是使用git,你要告诉git是谁在使用

git config --global user.name ‘userName’ 设置git账户,userName为你的git账号
git config --global user.email ‘email’ 设置git邮箱,同上都需要设置
git config –list 获取Git配置信息:

配置https和ssh推送时保存用户名和密码

git config --global credential.helper store https提交保存用户名和密码

生成公钥私钥,将公钥配置到GitHub,ssh提交就可以免输入用户名密码
三次回车即可生成 ssh key

ssh-keygen -t rsa
cat ~/.ssh/id_rsa.pub 查看已生成的公钥

推送到远程仓库正确流程

①. git init 初始化仓库
②. git add .(文件name) 添加文件到暂存区
③. git commit -m “first commit” 添加文件到本地仓库并提交描述信息
④. git remote add origin 远程仓库地址 链接远程仓库,创建主分支
⑤. git pull origin master --allow-unrelated-histories 把本地仓库的变化连接到远程仓库主分支
⑥. git push -u origin master 把本地仓库的文件推送到远程仓库

Nginx

systemctl start nginx: 启动nginx

systemctl status nginx:查看nginx状态

nginx -s reload: 重启nginx

nginx -s quit: 完整有序的停止nginx

ps aux |grep nginx : 查看nginx进程

仔细配置conf很重要

Centos7

firewall-cmd --query-port=80/tcp : 查看防火墙某个端口是否开放

firewall-cmd --zone=public --add-port=80/tcp --permanent :
开放防火墙端口80

firewall-cmd --reload : 配置立即生效

systemctl status firewalld : 查看防火墙状态

systemctl stop firewalld : 关闭防火墙

systemctl start firewalld : 打开防火墙

firewall-cmd --zone=public --add-port=8121-8124/tcp --permanent : 开放一段端口

firewall-cmd --zone=public --list-ports : 查看开放的端口列表

Linux

which 名称 : 查找文件的位置(一般是查找可执行的文件)

whereis 名称 : 查找面比which广,不局限于PATH

ps aux |grep 名称 : 查看进程

pkill -9 name/pid:杀死名称为name的进程,使用pid也可以

RabbitMq

rabbitmq-server.bat : 启动rabbitmq

rabbitmqctl status : 查看rabbitmq的状态

http://localhost:15672 :Rabbit的控制面板

Redis

redis-server : 开启redis

redis-cli : 链接redis客户端

ElasticSearch windows10

netstat -ano |findstr “端口号” :查看占用端口的进程

netstat -ano : 查看所有端口情况

Swagger2 Tomcat8

netstat -ano |findstr “端口号” :查看占用端口的进程

netstat -ano : 查看所有端口情况

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5351145.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-09
下一篇 2022-12-09

发表评论

登录后才能评论

评论列表(0条)

保存