konia-s opened a new issue #8035: Security: make user in mysql
URL: https://github.com/apache/airflow/issues/8035
 
 
   **Description**
   
[reference](https://airflow.apache.org/docs/stable/security.html#web-authentication)
   
   I wanna make first user , so I ran  this code.
   ```
   $ cd ~/airflow
   $ python
   Python 2.7.9 (default, Feb 10 2015, 03:28:08)
   Type "help", "copyright", "credits" or "license" for more information.
   >>> import airflow
   >>> from airflow import models, settings
   >>> from airflow.contrib.auth.backends.password_auth import PasswordUser
   >>> user = PasswordUser(models.User())
   >>> user.username = 'new_user_name'
   >>> user.email = 'new_user_em...@example.com'
   >>> user.password = 'set_the_password'
   >>> session = settings.Session()
   >>> session.add(user)
   >>> session.commit()
   >>> session.close()
   >>> exit()
   ```
   
   Maybe this code is only sqlite ... How using mysql ?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to