博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2019年11月25日

摘要: 推荐yum源安装: #查看 删除老php版本的源 yum list installed | grep php yum remove php.x86_64 php-cli.x86_64 php-common.x86_64 php-gd.x86_64 php-ldap.x86_64 php-mbstri 阅读全文

posted @ 2019-11-25 22:40 淼哥学习园地 阅读(3346) 评论(0) 推荐(0) 编辑

摘要: http:服务service httpd start 启动 service httpd restart 重新启动 service httpd stop 停止服务 启动ssh服务 # /etc/init.d/ssh start 开机启动 # update-rc.d ssh enable 阅读全文

posted @ 2019-11-25 21:26 淼哥学习园地 阅读(8065) 评论(0) 推荐(0) 编辑

摘要: 1.安装http: $ yum install httpd 2.启动http: $ systemctl start httpd 3.访问:http://192.168.1.100 4.Installing MariaDB yum install mariadb-server mariadb syst 阅读全文

posted @ 2019-11-25 21:24 淼哥学习园地 阅读(100) 评论(0) 推荐(0) 编辑

摘要: 代码: #include <iostream> #include <cstdio> #include <cstring> #include <vector> #include <map> #define isupper(x) (x >= 'A' && x <= 'Z') #define islow( 阅读全文

posted @ 2019-11-25 20:31 淼哥学习园地 阅读(353) 评论(0) 推荐(0) 编辑

摘要: ssh命令用于远程登录上Linux主机。 常用格式:ssh [-l login_name] [-p port] [user@]hostname更详细的可以用ssh -h查看。 举例 不指定用户: ssh 192.168.0.11 指定用户: ssh -l root 192.168.0.11 ssh 阅读全文

posted @ 2019-11-25 11:39 淼哥学习园地 阅读(1539) 评论(0) 推荐(0) 编辑