在线工具

2017-06-09     47

linux+nginx配置的服务器出现了 shell Call to undefined function curl_init() 错误 解决方法: 执行安装命令: shell sudo apt-getinstall php5-curl 就可以解决这个问题了。

2017-06-09     62

我在阿里云配置好服务器环境,把laravel项目弄进去,打开就报这个错误 html **PDOException in Connector.php line 55:could not find driver**。 直接在服务器上执行 shell sudo apt-getinstall php5-mysql 命令

2017-06-10     48

我配置的服务器环境,很多函数都因为没有安装配置而报错。 解决方法: 在服务器执行这条 shell sudo apt-getinstall php5-cgi php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-me 命令

2017-06-10     95

首先`ssh`连接服务器,运行: shell crontab -e 然后,输入或者粘贴进去。 shell 0 */2 * * * /usr/bin/curl http://www.mycjl.com/ 五个星号分别代表分、时、日、月、周。以上是两小时运行一次。 十分钟一次就是: shell */10 * * * * /usr/bin/curl http://www.mycjl.com/

2017-06-10     67

又是烦人的 502 Bad Gateway, 根据日志发现先是报错: shell connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream...... upstream: "fastcgi://unix:/var/run/php5-fp

2017-06-10     36

慎用 `sudo apt-get autoremoveapt-get` 提供了一个用于下载和安装软件包的简易命令行界面。 卸载软件包主要有这3个命令 卸载软件包: shell sudo apt-get remove 卸载所有自动安装且不再使用的软件包: shell sudo apt-get autoremove 卸载并清除软件包的配置: shell sudo apt-get purge

2017-06-10     56

修改`root`用户的密码 shell sudo passwd root 输入命令后会出现,这是要你输入新密码 shell Enter new UNIX password: 然后再重新输入一次 shell Retype new UNIX password: 成功的话,会提示 shell passwd: password updated successfully

2017-06-10     49

shell sudo rm /etc/pam.d/vsftpd 这是因为ubuntu启用了`PAM`,所在用到`vsftp`时需要用到 shell `/etc/pam.d/vsftpd 这个文件(默认源码安装的不会有这个文件),因此除了匿名用户外本地用户无法登录。所以只要删除了就可以了。

2017-06-10     63

1、使用`userdel` 删除用户出现错误 shell root@byhankswang-OptiPlex-780:/home# userdel byhankswanguserdel: user byhankswang is currently used by process 12782、 问题解决 shell root@ www.linuxidc.com :/home# vipw 找到你之

2017-06-10     55

在Linux中添加ftp用户,并设置相应的权限,操作步骤如下: 1.环境:ftp为vsftp。被设置用户名为test。被限制路径为 shell /home/test 2.建用户:在root用户下: shell useradd -d /home/test test #增加用户test,并制定test用户的主目录为/home/test passwd test #为test用户设置密码

2017-06-10     33

很多情况下,我们希望限制ftp用户只能在其主目录下(root dir)下活动,不允许他们跳出主目录之外浏览服务器上的其他目录,这时候我就需要使用到 `chroot_local_user`,`chroot_list_enable`,`chroot_list_file`这三个选项了。以下是对三个配置项的解释: shell chroot_local_user #是否将所有用户限制在主目录,YES为启用

2017-06-10     64

Linux下自带了一个`unzip`的程序可以解压缩文件, 解压命令是: shell `unzip` `filename.zip 同样也提供了一个zip程序压缩zip文件,命令是 shell zip -r filename.zip files 会将files压缩到`filename.zip` 另外看看你的文件的后缀名,不同的后缀的文件解压和压缩的命令都不一样 总结一下 shell *.tar