Centos
chyin1024
这个作者很懒,什么都没留下…
展开
-
nginx 运维
http://www.nginx.cn/installNginx安装2016年7月15日发表评论阅读评论nginx可以使用各平台的默认包来安装,本文是介绍使用源码编译安装,包括具体的编译参数信息。正式开始前,编译环境gcc g++ 开发库之类的需要提前装好,这里默认你已经装好。ububtu平台编译环境可以使用以下指令原创 2017-03-25 01:04:28 · 368 阅读 · 0 评论 -
centos 端口、防火墙篇
查看端口占用的进程lsof -i:80使用命令关闭占用80端口的程序sudo fuser -k 80/tcp原创 2017-03-25 08:25:05 · 374 阅读 · 0 评论 -
centos 用户管理及权限篇
转载自:http://blog.sina.com.cn/s/blog_51047ef70100evq2.html在创建用户时,需要为新建用户指定一用户组,如果不指定其用户所属的工作组,自动会生成一个与用户名同名的工作组。创建用户user1的时候指定其所属工作组users,例:useradd –g users user1 一、创建用户:1、使用命令原创 2017-03-25 08:26:57 · 517 阅读 · 0 评论 -
centos 安装postgresql
安装postgresql软件包sudo yum install postgresql-server postgresql11初始化dbsudo su - postgresinitdb -D /var/lib/pgsql/data1212启动/停止服务systemctl status postgresql.servicesystemctl start postgres原创 2017-04-18 09:33:27 · 420 阅读 · 0 评论 -
centos 重启 php-fpm
ps axo pid,%cpu,%mem,comm |grep PHP-fpmps aux | grep php-fpmpkill -9 php-fpm/etc/init.d/php-fpm start原创 2017-04-18 11:50:24 · 5819 阅读 · 0 评论 -
git 使用中的坑,无法pull 版本
git 使用中,遇到了一个很郁闷的问题,在linux 中能够使用pull 拉取代码,但在Windows下却提示error: Updating the following directories would lose untracked files in them: application/admin/\原因:Windows下的文件不能使用 ‘ \ ’ 这些特殊原创 2017-05-26 17:02:21 · 5234 阅读 · 1 评论 -
centos 安装nginx php mariadb
yum update 更新系统内核与软件版本reboot 重启服务器yum remove kernel 删除系统原来内核使用工具上传PHP源代码和nginx源代码,本教程我上传到/home目录下(当然也可以使用wget命令直接下载远程代码保存到服务器)。使用cd /home切换到home目录,ls命令显示文件目录,然后使用tar 命令分别解压出来。Cyum in原创 2017-08-11 11:39:41 · 364 阅读 · 0 评论 -
yum 安装mariadb,及二次安装root无密码、无法登录
yum 安装mariadbhttp://blog.csdn.net/heatheryun/article/details/51015354http://yum.mariadb.org/安装后,无法登录。解决:用超级管理员登录系统执行http://13683137989.blog.51cto.com/9636221/1902267无法登录原因:原创 2017-10-20 12:02:57 · 1062 阅读 · 0 评论