Home Operation and Maintenance CentOS How to install centos tools

How to install centos tools

Jul 28, 2020 pm 01:39 PM
centos tool

How to install centos tools: first install the Python dependency package; then unzip the compressed package, enter the directory, and install Python3; finally create a soft link, the code is [ln -s /usr/local/python3/ bin/python3/usr/bin/python3].

How to install centos tools

How to install centos tools:

1. Install Python

Install dependency packages: yum -y install zlib*

Download different versions of Python3 according to your needs:

wget https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tar.xz
Copy after login

Unzip the compressed package, enter the directory, and install Python3:

tar -xvJf  Python-3.6.2.tar.xz
cd Python-3.6.2
./configure --prefix=/usr/local/python3
make && make install
Copy after login

Create a soft link:

ln -s /usr/local/python3/bin/python3 /usr/bin/python3
ln -s /usr/local/python3/bin/pip3 /usr/bin/pip3
Copy after login

You’re done!

2. Install nginx

Add dependency package:

yum install epel-release
Copy after login

Install Nginx:

yum install nginx
Copy after login

Start Nginx:

systemctl start nginx
Copy after login

System self-start:

systemctl enable nginx
Copy after login

Note: Allow firewall HTTP/HTTPS communication:

sudo firewall-cmd --permanent --zone=public --add-service=http 
sudo firewall-cmd --permanent --zone=public --add-service=https
sudo firewall-cmd --reload
Copy after login

3. Install mariadb

View:

yum search mariadb
Copy after login

Installation:

yum -y install mariadb mariadb-server
Copy after login

Start:

systemctl start mariadb
Copy after login

Auto-start at boot:

systemctl enable mariadb
Copy after login

Simple configuration:

mysql_secure_installation
Copy after login

The first is to set the password, you will be prompted to enter the password first

Enter current password for root (enter for none):<–初次运行直接回车
Copy after login

Set password

Set root password? [Y/n] <– Whether to set the root user password, enter y and press Enter or press Enter directly

New password: <– Set the password for the root user

Re-enter new password: <– Enter the password you set again

Other configuration

Remove anonymous users? [Y/n] <–Whether to delete anonymous users, press Enter

Disallow root login remotely? [Y/n] <–Whether to disable root Remote login, press Enter,

Remove test database and access to it? [Y/n] <– Do you want to delete the test database, press Enter

Reload privilege tables now? [Y/n] ] <–Whether to reload the permission table, press Enter

Initialization of MariaDB is completed, and then test login

mysql -uroot -ppassword
Copy after login

is completed.

Note: Permission configuration, allow external network access:

grant all privileges on *.* to 'root'@'External network IP address' identified by 'password'

Done, Navicat is successfully connected.

4. Install redis

Download the installation package:

wget http://download.redis.io/releases/redis-4.0.2.tar.gz
Copy after login

Unzip the installation package and install:

tar xzf redis-4.0.2.tar.gz
cd redis-4.0.2
make && make install
Copy after login

ps: redis is not available For other external dependencies, the installation process is simple. After compilation, several executable programs can be found in the src folder of the Redis source code directory. After installation, the redis executable file just installed can be found in the /usr/local/bin directory.

Start up (run redis-server directly to start redis): redis-server

Modify the redis.conf file to prevent mining viruses from happening again!

vim redis.conf
Copy after login

vim looks at the line number:

:set number
Copy after login

bind 127.0.0.1 intranet ip cannot be commented out

port: It is best to change the port

requirepass:password
Copy after login

5. Install mongodb

Create repo file: vim /etc/yum.repos.d/mongodb-org-3.6.repo

The content is as follows :

[mongodb-org-3.6]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.6/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-3.6.asc
Copy after login

Install mongodb:

yum install -y mongodb-org
Copy after login

Start/restart mongodb:

service mongod start/restart
systemctl start/restart/stop mongod.service
Copy after login

Set up remote access:

vim /etc/mongod.conf
Copy after login

Edit mongod.conf comment bindIp or bindIP: 0.0.0.0 (note that there are no spaces in it, otherwise it cannot be started), and restart mongodb. (This configuration means that it can only be used on this machine, so it needs to be commented)

Restart:

systemctl restart mongod.service
Copy after login

Use mongo:

mongo
Copy after login

Recommended related tutorials: centos tutorial

The above is the detailed content of How to install centos tools. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the complexity of WordPress installation and update using Composer How to solve the complexity of WordPress installation and update using Composer Apr 17, 2025 pm 10:54 PM

When managing WordPress websites, you often encounter complex operations such as installation, update, and multi-site conversion. These operations are not only time-consuming, but also prone to errors, causing the website to be paralyzed. Combining the WP-CLI core command with Composer can greatly simplify these tasks, improve efficiency and reliability. This article will introduce how to use Composer to solve these problems and improve the convenience of WordPress management.

How to solve SQL parsing problem? Use greenlion/php-sql-parser! How to solve SQL parsing problem? Use greenlion/php-sql-parser! Apr 17, 2025 pm 09:15 PM

When developing a project that requires parsing SQL statements, I encountered a tricky problem: how to efficiently parse MySQL's SQL statements and extract the key information. After trying many methods, I found that the greenlion/php-sql-parser library can perfectly solve my needs.

How to solve complex BelongsToThrough relationship problem in Laravel? Use Composer! How to solve complex BelongsToThrough relationship problem in Laravel? Use Composer! Apr 17, 2025 pm 09:54 PM

In Laravel development, dealing with complex model relationships has always been a challenge, especially when it comes to multi-level BelongsToThrough relationships. Recently, I encountered this problem in a project dealing with a multi-level model relationship, where traditional HasManyThrough relationships fail to meet the needs, resulting in data queries becoming complex and inefficient. After some exploration, I found the library staudenmeir/belongs-to-through, which easily installed and solved my troubles through Composer.

Accelerate PHP code inspection: Experience and practice using overtrue/phplint library Accelerate PHP code inspection: Experience and practice using overtrue/phplint library Apr 17, 2025 pm 11:06 PM

During the development process, we often need to perform syntax checks on PHP code to ensure the correctness and maintainability of the code. However, when the project is large, the single-threaded syntax checking process can become very slow. Recently, I encountered this problem in my project. After trying multiple methods, I finally found the library overtrue/phplint, which greatly improves the speed of code inspection through parallel processing.

Solve database connection problem: a practical case of using minii/db library Solve database connection problem: a practical case of using minii/db library Apr 18, 2025 am 07:09 AM

I encountered a tricky problem when developing a small application: the need to quickly integrate a lightweight database operation library. After trying multiple libraries, I found that they either have too much functionality or are not very compatible. Eventually, I found minii/db, a simplified version based on Yii2 that solved my problem perfectly.

How to optimize website performance: Experiences and lessons learned from using the Minify library How to optimize website performance: Experiences and lessons learned from using the Minify library Apr 17, 2025 pm 11:18 PM

In the process of developing a website, improving page loading has always been one of my top priorities. Once, I tried using the Miniify library to compress and merge CSS and JavaScript files in order to improve the performance of the website. However, I encountered many problems and challenges during use, which eventually made me realize that Miniify may no longer be the best choice. Below I will share my experience and how to install and use Minify through Composer.

Solve CSS prefix problem using Composer: Practice of padaliyajay/php-autoprefixer library Solve CSS prefix problem using Composer: Practice of padaliyajay/php-autoprefixer library Apr 17, 2025 pm 11:27 PM

I'm having a tricky problem when developing a front-end project: I need to manually add a browser prefix to the CSS properties to ensure compatibility. This is not only time consuming, but also error-prone. After some exploration, I discovered the padaliyajay/php-autoprefixer library, which easily solved my troubles with Composer.

Solve caching issues in Craft CMS: Using wiejeben/craft-laravel-mix plug-in Solve caching issues in Craft CMS: Using wiejeben/craft-laravel-mix plug-in Apr 18, 2025 am 09:24 AM

When developing websites using CraftCMS, you often encounter resource file caching problems, especially when you frequently update CSS and JavaScript files, old versions of files may still be cached by the browser, causing users to not see the latest changes in time. This problem not only affects the user experience, but also increases the difficulty of development and debugging. Recently, I encountered similar troubles in my project, and after some exploration, I found the plugin wiejeben/craft-laravel-mix, which perfectly solved my caching problem.

See all articles