Tag:centos7
-
Centos7 installation Minio
Download Minio wget https://dl.minio.io/server/minio/release/linux-amd64/minio [[email protected] tools]# chmod +x minio [[email protected] tools]# mkdir -p /home/minio/data [[email protected] local]# ./minio server /home/minio/data Endpoint: http://10.76.14.122:9000 http://127.0.0.1:9000 AccessKey: xxxx SecretKey: xxxx Browser Access: http://10.76.14.122:9000 http://127.0.0.1:9000 Command-line Access: https://docs.min.io/docs/minio-client-quickstart-guide $ mc config host add myminio http://10.76.14.122:9000 xxxx xx Object API (Amazon S3 compatible): Go: https://docs.min.io/docs/golang-client-quickstart-guide Java: https://docs.min.io/docs/java-client-quickstart-guide Python: https://docs.min.io/docs/python-client-quickstart-guide JavaScript: https://docs.min.io/docs/javascript-client-quickstart-guide […]
-
Centos7 installation VNC (self tested)
Step 1: install VNC packages: [[email protected] ~]# yum install tigervnc-server -y Step 2: modify the configuration informationCreate the file vncserver @ under / etc / SYSTEMd / system /: 1 Service, such as file from / lib / SYSTEMd / system/ [email protected] Copy into it [[email protected] ~]# cp /lib/systemd/system/[email protected] /etc/systemd/system/[email protected]:1.service Then open the configuration file […]
-
Using docker to install fastdfs (distributed file system) on centos7
1、 Installation environment:Use docker to install fastdfs (distributed file system) on centos7. 2、 Preparation environment:1. For the installation of docker on centos7, please refer to: https://blog.csdn.net/qq_43602335/article/details/1009281442. Turn off the firewall [[email protected] ~]# systemctl stop firewalld [[email protected] ~]# vi /etc/sysconfig/selinuxFind SELinux = enforceing and change enforceing to disabled 3. Restart [[email protected] ~]reboot 3、 Installation:1. Query fastdfs […]
-
Install git server using centos7 Yum or up2date
Install Git yum install git Check git version git –version It is found that it is not a newer version or the version we want Remove this version Git yum remove git Download compilation tool yum -y groupinstall Development Tools Download dependent packages yum -y install zlib-devel perl-ExtUtils-MakeMaker asciidoc xmlto openssl-devel Download the source code […]
-
Build Ruby on rails development environment under centos7
1. Install RVM ? 1 curl -L https://get.rvm.io | bash -s stable RVM is a command-line tool, which provides management and switching of multi version Ruby environment. It can also manage different gemsets according to the project. If the SSH key is not generated, this step may fail. You can directly generate the key through […]
-
Method of installing and deploying gitlab server in CentOS 7
I use CentOS 7 64bit system here. I’ve tried CentOS 64bit system, and it’s OK 1. Install dependent software yum -y install policycoreutils openssh-server openssh-clients postfix 2. Set postfix to start automatically and start. Postfix supports gitlab sending function systemctl enable postfix && systemctl start postfix 3. Download the gitlab installation package and install it […]
-
Detailed explanation of KVM virtualization basic management of centos7
1、 Install KVM virtualization [ [email protected] Media]# Yum – y groupinstall “GNOME desktop” # install GNOME desktop environment [ [email protected] Media]# Yum – y install QEMU KVM #kvm module [ [email protected] Media]# Yum – y install QEMU KVM tools #kvm debugging tool, optional [ [email protected] Media]# Yum – y install virt install command line tool […]
-
Explain the installation and configuration tutorial of PostgreSQL 11 under centos7
1. Official website address Installation reference steps are provided on the official website: click here to view the official website 2. Install rpm yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm 3. Install the client yum install postgresql11 4. Install the server side yum install postgresql11-server 5. Install dependent packages yum install postgresql11-libs yum install postgresql11-contrib yum install postgresql11-devel 6. […]
-
Solve the problem that VMware 15 centos7 bridging mode SSH suddenly cannot be accessed
Because I want the virtual machine to have its own LAN IP, I use bridging, which is convenient for testing Here comes the question: 1. SSH suddenly fails to connect, and the items on the virtual machine cannot be accessed 2. The virtual machine is networked as usual, and there is no problem pinging with […]
-
Centos7 installation of ZABBIX 4.0 tutorial
Shut down SELinux setenforce 0 Permanent closure: vi /etc/selinux/config Turn off firewall systemctl stop firewalld.service Note: of course, you can also open the specified port Installation environment LAMP #Install Apache yum install -y httpd #Httpd service starts automatically when it is turned on systemctl enable httpd #Start httpd service systemctl start httpd ZABBIX wants to […]
-
Implementation of centos7 installation GUI interface and remote connection
Using selenium technology based on browser to crawl data, so the program needs to run in GUI environment. This paper is divided into three parts to briefly introduce the steps of installing GUI interface and remote connection. Install GUI interface Most of the images provided by cloud server manufacturers have no GUI interface, so the […]