linux
没得感情的代码搬运工
这个作者很懒,什么都没留下…
展开
-
fastDFS的安装与配置
官方网站:https://github.com/happyfish100/配置文档:https://github.com/happyfish100/fastdfs/wiki/参考资料:https://www.oschina.net/question/tag/fastdfsJava客户端:https://github.com/happyfish100/fastdfs-client-java转载 2020-07-22 18:34:42 · 134 阅读 · 0 评论 -
Centos7线上文件备份方案
使用rsync+sersync架构Sersync服务器(业务服务器 ):192.168.101.90Rsync服务器(备份服务器):192.168.101.1001.在192.168.101.100安装1.安装软件yum -y install xinetd rsync2.编辑配置文件vi /etc/rsyncd.conf 添加如下代码uid=rootgid=root#监听IP,本地的ipaddress=192.168.101.100#监听端口port=873#允许同步客户端的I原创 2020-07-20 08:55:46 · 952 阅读 · 0 评论 -
Centos7开机自启设置
Centos7开机自启设置可以有两种方式,一种是rc.local方式,一种是systemctl方式1.rc.local方式以libreoffice为例,libreoffice安装方式前文有讲过https://blog.csdn.net/weixin_38300488/article/details/106715440最后启动的方式是运行如下命令/opt/libreoffice6.4/program/soffice --headless --accept="socket,host=127.0.0.1原创 2020-07-20 08:20:30 · 536 阅读 · 0 评论 -
Centos7下安装LibreOffice6.4
1.下载安装包wget http://mirrors.ustc.edu.cn/tdf/libreoffice/stable/6.4.4/rpm/x86_64/LibreOffice_6.4.4_Linux_x86-64_rpm.tar.gz wget http://mirrors.ustc.edu.cn/tdf/libreoffice/stable/6.4.4/rpm/x86_64/LibreOffice_6.4.4_Linux_x86-64_rpm_sdk.tar.gzwget http://mir原创 2020-06-12 14:49:19 · 1308 阅读 · 0 评论 -
centos7下安装mysql5.7.22
1.卸载MariaDB[root@localhost ~]# rpm -qa | grep mariadbmariadb-libs-5.5.65-1.el7.x86_64[root@localhost ~]# rpm -e --nodeps mariadb-libs[root@localhost ~]# [root@localhost ~]# rpm -qa | grep mariadb[root@localhost ~]# 2.下载mysql安装包去官网下载mysql5.7.22,如果需原创 2020-05-22 15:22:55 · 223 阅读 · 0 评论 -
centos7网络模式-桥接(NAT)模式配置
一般我们在一台电脑上安装好虚拟机后,想让其它电脑能用xshell连接,这时,我们就需要用桥接模式才能实现。虚拟机三大网络模式的区别自行百度。桥接模式设置:1.点击如下图点击2.第二步填写的子网IP,第三段不能与主机一样,写好之后,点击33.在网关IP中填写与上面一样的网段,一般第四位和我图一样就行4.然后添加端口转发就是我通过访问主机的什么端口来访问虚拟机的什么端口之后点击确定(后面有需要暴露端口的都需要在这里添加,如oracle的1521等)5.选择好虚拟机后再如下图点击点原创 2020-05-22 13:53:55 · 558 阅读 · 0 评论 -
centos7环境安装好后,常用的linux命令
1.ifconfig:command not foundsudo yum install net-tools2.unzip: command not foundyum install -y unzip zip3.查看防火墙状态firewall-cmd --state4.停止firewallsystemctl stop firewalld.service5.禁止firewall开机启动systemctl disable firewalld.service6.网络服务修改网络配置:vi原创 2020-05-22 13:36:23 · 179 阅读 · 0 评论 -
linux配完oracle的环境变量有时不生效,要source才能生效
现象:centos7环境下安装好了oracle11g,但是有时sqlplus / as sysdba显示sqlplus命令未找到临时解决方案:执行下source /home/oracle/.bash_profile就可以了但是不能每次都这样,所有最终解决方案如下(可能还会有其他办法):1.查看里面配置了什么[root@localhost ~]# cat /home/oracle/.bash_profile 2.在root用户下[root@localhost ~]# cd ~[root原创 2020-05-22 13:34:53 · 1591 阅读 · 0 评论 -
Centos7下安装oracle11g
主机名设置[root@localhost ~]# hostnamelocalhost.localdomain[root@localhost ~]# vi /etc/hosts[root@localhost ~]# cat /etc/hostcat: /etc/host: 没有那个文件或目录[root@localhost ~]# cat /etc/hosts#127.0.0.1 localhost localhost.localdomain localhost4 localhost4.loc原创 2020-05-21 18:30:38 · 415 阅读 · 0 评论 -
linux设置时间
新安装的centos系统时间与本地时间不对先设置系统时间,再根据系统时间同步硬件时间时区不对的话vi /etc/profile原创 2020-05-19 15:37:18 · 123 阅读 · 0 评论 -
VMware安装 Linux 系统
1.下载镜像http://mirrors.aliyun.com/centos/7/isos/x86_64/2.VMware下载和安装参考其他教程3.VMware下安装linux点击创建新的虚拟机如下选择,点击下一步如下选择,点击下一步填写虚拟机名称,然后点击下一步默认即可,选择下一步点击自定义硬件如下选择,使用第一步的镜像点击关闭,在点击完成进入如下页面点击我已完成安装,等待系统安装选择中文选择安装位置点击完成点击开始安装安装过程完成ROO原创 2020-05-19 15:09:04 · 134 阅读 · 0 评论