mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 18:36:12 +01:00 
			
		
		
		
	 86ec20189a
			
		
	
	
	86ec20189a
	
	
	
		
			
			Add ssl_passphrase server parameter, which works similarly to --passout/--passin openssl command line parameters. Pass phrase value can be formatted as follows. - pass:password Provide actual password after the pass: prefix. - env:var Obtain the password from the environment variable 'var'a - file:pathname Reads the password from the specified file pathname. Only the first line, up to the newline character, is read from the stream. If ssl_passphrase was set, SHOW VARIABLE will show "file:", "env:" or "pass:" (but won't reveal sensitive data)
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			81 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			81 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| SELECT @@ssl_passphrase;
 | |
| @@ssl_passphrase
 | |
| pass:
 | |
| have_ssl
 | |
| 1
 | |
| FLUSH SSL;
 | |
| have_ssl
 | |
| 1
 |