250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- SSL
- CentOS7
- LetsEncrypt
- 구글 클라우드
- Fail2ban
- Linux
- Apache
- php
- front page
- non-www
- root
- child theme
- Xdebug
- new user
- Certbot
- Liniux
- mysql
- DOM Parser
- launch.json
- home page
- https
- wordpress
- centos
- git pull
- Mac
- crontab
- MariaDB
- vscode
- Google Cloud
- html
Archives
- Today
- Total
목록MariaDB (2)
between 0 and 1
add new user and set remote access
for internal access (localhost) CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost'; FLUSH PRIVILEGES; for remote access CREATE USER 'newuser'@'%' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'%'; FLUSH PRIVILEGES;
Software Development Engineering/MySQL
2021. 2. 10. 01:26
CentOS 7에 서버 환경 구축하기 (Apache, PHP, MySQL or MariaDB)
CentOS 7에 서버환경을 구축하는 간단한 방법!(Apache, PHP, MariaDB) 1. 서버 환경 설치 - Apache, PHP, MariaDB $> yum install httpd php mariadb-server php-mysql 2. 시작 서비스로 등록 - 서버가 부팅될 때 서비스가 자동으로 시작되도록 등록 $> systemctl enable httpd$> systemctl enable mariadb 3. 서비스 시작$> systemctl start httpd$> systemctl start mariadb 4. MariaDB 관리자 비밀번호 설정$> mysql_secure_installation 5. MariaDB 외부에서 접근 가능하도록 설정1) root 계정으로 MariaDB 접속$> ..
Software Development Engineering/Linux
2018. 7. 13. 17:25