-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
【Linux】CentOS-常用命令&新云服务器安装必看 #1
Comments
Centos 修改当前路径显示为全路径 修改/etc/bashrc [ "$PS1" = "\s-\v\$ " ] && PS1="[\u@\h \W]\$ " 修改为(W大写换成小写) [ "$PS1" = "\s-\v\$ " ] && PS1="[\u@\h \w]\$ " |
查看CentOS版本命令:rpm -q centos-release |
Centos7 升级安装Python2.7到3.6 : https://www.jianshu.com/p/1cc8f77679c8 CentOS 7 修改pip源: https://blog.csdn.net/jiankunking/article/details/86627207 |
CentOS Docker 安装 :https://www.runoob.com/docker/centos-docker-install.html centos7配置Docker镜像加速器 :https://www.cnblogs.com/djlsunshine/p/11375323.html Docker Compose安装使用&其他 :https://www.runoob.com/docker/docker-compose.html【x】不要用里面的下面地址,速度会特别慢!!! 【√】用这个https://cloud.tencent.com/developer/article/1339375 里面的
【例子】在linux-centos上部署python项目AAA 创建python项目并上传到linux上
BBB Dockerfile的内容&构建镜像
根据Dockerfile制作镜像的命令:docker build -t img_name:tag_name . CCC 【例子】运行镜像,生成并启动容器 执行命令:docker run -it -p 5000:5000 --name container_name IMAGE_ID
ctrl+d 退出容器且关闭, docker ps 查看无 ctrl+p+q 退出容器但不关闭 CCC 运行镜像
DDD Linux-CentOS需要开启5000端口
docker容器镜像删除命令
|
CentOS7开启端口:
删除/关闭端口
——用端口扫描发现5000端口还是关闭状态 解决,原因是python代码没有加下面的host='0.0.0.0', port=5000
Centos7 防火墙相关命令 :https://www.cnblogs.com/love-snow/articles/9149334.html |
CentOS上传/下载文件,需安装:yum -y install lrzsz 删除文件:rm file_name |
【查看端口并杀死端口】 |
杀死linux进程
另一个:
|
git pull/push项目的时候总是提示要输入用户名密码的解决方案
|
Linux-CentOS7-安装nginx:https://blog.csdn.net/luhuibo318/article/details/88754448 Linux-CentOS7-安装java:https://blog.csdn.net/luhuibo318/article/details/89443221 |
Linux-CentOS7.4 安装mongodb: https://www.jianshu.com/p/994bc7b19b26
centos7 下设置 mongodb 开机启动:
如有修改,需用这个命令重新加载systemctl daemon-reload 【mongodb添加账号和密码】 : https://www.cnblogs.com/aGirlprogrammer/p/10972280.html 【mongodb常用数据查询筛选命令行操作】 : https://blog.csdn.net/liqi_q/article/details/79086238 【windows下载robo 3T 1.3版本连接远程的mongodb】 |
在centos7中使用crontabA 简介:就像再windows上有计划任务一样,centos7 自然也有计划任务,而且设置更为灵活,好用。再centos7 上可以利用crontab 来执行计划任务, 依赖与 crond 的系统服务,这个服务是系统自带的,可以直接查看状态,启动,停止。
B 列出用户的定时任务列表 C 编辑crontab 的配置文件,设置定时任务。
D 默认日志 |
运行项目报错,提醒内存不足
参考:https://blog.csdn.net/herobacking/article/details/80371242 【注意】重启后这个就会没了,需要重新设置 |
【Linux 常用命令大大全】https://blog.csdn.net/a303549861/article/details/93754526 |
linux查找符合条件的文件并删除 如果想指定递归深度,可以这样: |
下面我是新购买的腾讯云-Linux-CentOS服务器的使用记录
The text was updated successfully, but these errors were encountered: