/var/empty/ssdh must be owned by root and not group or world-writable

Problem Description:After adding Oracle users, the development feedback can connect PING to the host and Telnet to the corresponding port. Client screenshots are as follows: Problem analysis:Maybe in the process of multi-user operation, or in the process of creating users, the operation errors of time privilege which set the membership gro ...

Posted by jstngk on Wed, 13 Feb 2019 01:00:18 -0800

iptables rules backup and recovery, firewalld's nine zones, firewalld's operation on zones, firewalld's operation on service s

iptables rule backup and recovery 9 zone s of firewalld   System CTL disable iptables boot on System CTL stop iptables turn off service System CTL enable firewalld boot System CTL start firewalld opens the service View all zone s [root@glinux-01 ~]# firewall-cmd --get-zones block dmz drop external home internal public trusted work ...

Posted by itworks on Tue, 05 Feb 2019 18:09:19 -0800

C

Some time ago, I received a request to dock a tool class written by C # and upload data to our system background. Demand is not difficult, very common, so for convenience. So I wrote (java framework SSH): C# Code to simulate requests public static void Main(string[] args) { String postData = fileToString ...

Posted by joel24 on Sat, 02 Feb 2019 09:42:16 -0800

Deploying docker-based CEPH cluster using ceph-ansible

Deploying docker-based CEPH cluster using ceph-ansible Install ansible Download ceph-ansible Configure ceph-ansible Start deployment Destroying Clusters (Caution) Install ansible For installing ansible and configuring secret-free login between nodes, this is not covered here. Please refer to Official Documents. Downlo ...

Posted by Valkrin on Thu, 31 Jan 2019 19:12:15 -0800

Understand the core concepts of Ansible for automated operations, install and configure Ansible and learn to use its common modules.

Overview of Automation Operation and Maintenance: Nowadays, with the rapid development of the Internet, the efficiency of traditional operation and maintenance methods is too low. Deployment of automated operation and maintenance can safely and efficiently complete the maintenance work, which has become the main mode of operation and maintena ...

Posted by beeman000 on Thu, 31 Jan 2019 12:27:15 -0800

linux Learning Lesson 28

Catalog 1 awk command 1 awk command Copy exercise files [root@worker1 dir9]# cp /etc/passwd ./testpasswd Print the first field [root@worker1 dir9]# head -n2 testpasswd | awk -F ':' '{print $1}' ROOT bin Print entire line [root@worker1 dir9]# head -n2 testpasswd | awk -F ':' '{print $0}' ROOT:x:0:0:roooot:/root:/bin/ ...

Posted by stickynote427 on Wed, 30 Jan 2019 21:06:14 -0800

linux basic learning [6]

system log I. Management of System Log cat /var/log/messages ##View the default saved logs 1. Management of log collection service rsyslog /var/log/messages ##Service Information Log /var/lgo/secure ##System login log /var/log/cron ##Timing Task Log /var/log/maillog ##Mail l ...

Posted by fareedreg on Wed, 30 Jan 2019 14:00:15 -0800

YAML, Basic Elements of Ansible Automation Operation and Maintenance

Introduction to YAML: * YAML is a format used to express data sequences. YAML is the abbreviation of YAML Ain't Markup Lanaguage, that is, YAML is not XML. * characteristics: 1. It has good continuity and is easy to implement. 2. Strong expressive ability and good expansibility; 3. Good interaction with scripting language; 4. H ...

Posted by drorshem on Mon, 28 Jan 2019 13:30:14 -0800

A gitlab can not use ssh login to solve the problem

Fault phenomena: [root@web-m data]# git clone ssh://git@gitlab.lixinkuan.com:22022/lxk/core.git Cloning into 'core'... git@gitlab.lixinkuan.com's password: Permission denied, please try again. git@gitlab.lixinkuan.com's password: Permission denied, please try again. git@gitlab.lixinkuan.com's password: Permission denied (publickey,gssapi-ke ...

Posted by Hikari on Sat, 26 Jan 2019 00:33:14 -0800

Build a High Availability (HA) cluster using the Quorum Journal Manager (QJM)

Manual HA 1. If you are creating a brand new HA cluster, please complete this article first. Blog The first 18 steps. 2,modify core-site.xml <property> <name>fs.defaultFS</name> <value>hdfs://mycluster</value> </property> <property> <name>hadoop.tmp.dir</name> &l ...

Posted by dragongamer on Tue, 22 Jan 2019 19:24:12 -0800