Community journal

The latest from the MySQL community

Ideas, releases, practical guides, and perspectives from the people building with MySQL.

Follow the feed
Showing entries 2051 to 2060 of 15691 « Previous | Next »
26.2. create database and user

# mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 10 Server version: 5.

【javascript】  【mysql】  【Server】  【grant】  【Create】  【database】  【source】  【type】   …

[获取更多]
第 24 章 Web Server

目录 24.1. Apache httpd 24.1.1. Install 24.1.2. Uninstall 24.1.3. Configure 24.1.3.1. Apache 24.1.3.2.

【php】  【mysql】  【Apache】  【yum】  【web】  【Server】  【list】  【service】   点击查看原文>

[获取更多]
22.2. service

# service nginx Usage: nginx {start|stop|restart|condrestart|try-restart|force-reload|upgrade|reload|status|help|configtest}

# service nginx stop # service nginx start # service nginx restart [ ] NetworkManager 自动在多种网络连接中进行转换,如果你的电脑有Wireless WiFi 和 Ethernet多种网络连接类型的话,可以选择开启。

【nginx】  【监控】  【服务器】  【mysql】  【防火墙】  【控制台】   …

[获取更多]
9.2. service

# service nginx Usage: nginx {start|stop|restart|condrestart|try-restart|force-reload|upgrade|reload|status|help|configtest}

# service nginx stop # service nginx start # service nginx restart [ ] NetworkManager 自动在多种网络连接中进行转换,如果你的电脑有Wireless WiFi 和 Ethernet多种网络连接类型的话,可以选择开启。

【nginx】  【监控】  【服务器】  【mysql】  【防火墙】  【控制台】   …

[获取更多]
4.3. rpm - RPM Package Manager

4.3.1. install/upgrade/remove

1.安装一个包 # rpm -ivh

2.升级一个包 # rpm -Uvh

3.删除一个包 # rpm -e 不检查依赖性关系 rpm -ivh --nodeps 强制安装 rpm -ivh --force --nodeps

4.

【nginx】  【php】  【mysql】  【日志】  【rpm】  【Server】  【database】   …

[获取更多]
4.2. yum - Yellowdog Updater Modified

4.2.1. install

yum -y install package reinstall yum -y reinstall package

4.2.2. localinstall

yum localinstall 可以代替 rpm -ivh 并且会自己安装依赖包 # yum localinstall asymptote-2.

【mysql】  【yum】  【centos】  【gnome】  【Server】  【update】  【list】   …

[获取更多]
win10下Docker初识

说明

使用平台win10 1709版本,提示如果你的也是win10系统,而且版本较低可能也会提示xxxpro什么的,意思就是你的电脑版本不对。

【nginx】  【linux】  【docker】  【mysql】  【数据库】  【配置】  【tomcat】  【镜像】   …

[获取更多]
解决 ASP.NET Core MySql varchar 字符串截取(长度 255)

ASP.NET Core 中使用 MySql,如果字段类型为varchar,不管设置多少长度,插入或更新数据的时候,会自动截断(截取 255 长度的字符)。 出现问题的原因,就是使用了MySql.Data.EntityFrameworkCore程序包(我使用的版本是7.0.7-m6),可能是其版本问题,升级版本的话,可能问题不会出现了。

【mysql】  【配置】  【entity】  【asp】  【Core】  【varchar】   …

[获取更多]
linux CentOS6.5 yum安装mysql 5.6

1.新开的云服务器,需要检测系统是否自带安装mysql # yum list installed | grep mysql

2.如果发现有系统自带mysql,果断这么干 # yum -y remove mysql-libs.

【linux】  【服务器】  【mysql】  【云服务器】  【yum】  【rpm】  【安全设置】   …

[获取更多]
查看mysql 默认端口号和修改端口号

1. 登录mysql

mysql -u root -p //输入密码

   2. 使用命令show global variables like 'port';查看端口号

mysql> show global variables like 'port';

   3. 修改端口,编辑/etc/my.cnf文件,早期版本有可能是my.conf文件名,增加端口参数,并且设定端口,注意该端口未被使用,保存退出。

【mysql】  【LOG】  【test】  【variables】  【Security】   …

[获取更多]