当前位置: 首页 > news >正文

网站建设课程设计的必要性网站建设与维护书

网站建设课程设计的必要性,网站建设与维护书,开发者工具使用教程,怎样管理好一个企业问题描述#xff1a;使用brew方式安装mysql#xff0c;存在以下问题#xff1a;1.由于mysql已经升级到8.x版本#xff0c;会默认安装8.x版本#xff0c;会对之前部分特性不友好支持#xff1b;2.brew默认安装源下载响应时间非常慢#xff0c;下载时间过长容易超时#…问题描述使用brew方式安装mysql存在以下问题1.由于mysql已经升级到8.x版本会默认安装8.x版本会对之前部分特性不友好支持2.brew默认安装源下载响应时间非常慢下载时间过长容易超时问题解决问题一通过brew search mysql可以查看到是有历史版本可以下载的包括经典的5.7版本问题二需要更换brew源地址具体更换源地址如下问题延伸网上搜索大家都说跳转到/usr/local目录下使用git remote操作结果如下$ git remote -vfatal: Not a git repository (or any of the parent directories): .git这就很无语了后来终于找到另一种姿势(使用环境变量去找)替换以下几个镜像源替换为中科大的镜像替换brew.gitcd $(brew --repo)git remote set-url origin https://mirrors.ustc.edu.cn/brew.git替换homebrew-core.git:cd $(brew --repo)/Library/Taps/homebrew/homebrew-coregit remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git替换成功后更新下源brew update对于bash用户echo export HOMEBREW_BOTTLE_DOMAINhttps://mirrors.ustc.edu.cn/homebrew-bottles ~/.bash_profilesource ~/.bash_profile对于zsh用户echo export HOMEBREW_BOTTLE_DOMAINhttps://mirrors.ustc.edu.cn/homebrew-bottles ~/.zshrcsource ~/.zshrc也可以选择替换清华大学镜像(和上边部分效果相同)替换brew.gitcd $(brew --repo)git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git替换homebrew-core.git:cd $(brew --repo)/Library/Taps/homebrew/homebrew-coregit remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.gitbrew update使用homebrew-science或者homebrew-python还需要替换cd $(brew --repo)/Library/Taps/homebrew/homebrew-sciencegit remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-science.gitcd $(brew --repo)/Library/Taps/homebrew/homebrew-pythongit remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-python.gitbrew update对于bash用户echo export HOMEBREW_BOTTLE_DOMAINhttps://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles ~/.bash_profilesource ~/.bash_profile对于zsh用户echo export HOMEBREW_BOTTLE_DOMAINhttps://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles ~/.zshrcsource ~/.zshrc替换好brew源地址安装mysql5.7就会轻松很多brew源配置生效后使用brew install mysql5.7安装即可安装完成后提示如下Weve installed your MySQL database without a root password. To secure it run:mysql_secure_installation #初始化配置MySQL is configured to only allow connections from localhost by defaultTo connect run:mysql -uroot #运行连接mysql5.7 is keg-only, which means it was not symlinked into /usr/local,because this is an alternate version of another formula.If you need to have mysql5.7 first in your PATH run: #配置环境变量echo export PATH/usr/local/opt/mysql5.7/bin:$PATH ~/.bash_profileFor compilers to find mysql5.7 you may need to set:export LDFLAGS-L/usr/local/opt/mysql5.7/lib #想要系统编译运行认识mysql5.7配置环境变量export CPPFLAGS-I/usr/local/opt/mysql5.7/includeTo have launchd start mysql5.7 now and restart at login:brew services start mysql5.7 #启动安装后的mysql数据库Or, if you dont want/need a background service you can just run:/usr/local/opt/mysql5.7/bin/mysql.server start #通过配置文件启动mysql数据库根据安装后提示信息第一步配置环境变量家目录下vi .bashprofile文件将安装后提示的export PATH/usr/local/opt/mysql5.7/bin:$PATHexport LDFLAGS-L/usr/local/opt/mysql5.7/libexport CPPFLAGS-I/usr/local/opt/mysql5.7/include加入到.bash_profile文件中加入保存后使用source .bashprofile使配置到环境变量生效完成后使用:brew services start mysql5.7或者你根据配置文件启动mysql数据库服务启动后开始初始化配置运行mysql_secure_installation提示如下Securing the MySQL server deployment.Connecting to MySQL using a blank password.VALIDATE PASSWORD PLUGIN can be used to test passwordsand improve security. It checks the strength of passwordand allows the users to set only those passwords which aresecure enough. Would you like to setup VALIDATE PASSWORD plugin?Press y|Y for Yes, any other key for No: k //是否采用mysql密码安全检测插件我本地使用果断拒绝了因为密码检查插件要求密码复杂程度高大小写字母数字字符等Please set the password for root here. // 首次使用自带配置脚本设置root密码New password:Re-enter new password:By default, a MySQL installation has an anonymous user,allowing anyone to log into MySQL without having to havea user account created for them. This is intended only fortesting, and to make the installation go a bit smoother.You should remove them before moving into a productionenvironment.Remove anonymous users? (Press y|Y for Yes, any other key for No) : y //是否删除匿名用户Success.Normally, root should only be allowed to connect fromlocalhost. This ensures that someone cannot guess atthe root password from the network.Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y //是否禁止远程登录Success.By default, MySQL comes with a database named test thatanyone can access. This is also intended only for testing,and should be removed before moving into a productionenvironment.Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y //删除测试数据库并登录- Dropping test database...Success.- Removing privileges on test database...Success.Reloading the privilege tables will ensure that all changesmade so far will take effect immediately.Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y //重新载入权限表Success.All done!配置完成使用mysql -uroot -p,然后输入配置到root密码登陆到mysql数据库
http://www.yutouwan.com/news/399485/

相关文章:

  • 印刷做网站网上接单网站设计属于什么经营范围
  • 威海网站网站建设台州seo网站管理
  • 如何做网站轮播大图清远市清城区发布
  • 电子商务网站开发教程书内代码我wordpress top主题
  • 恩施网站制作公司360建筑网官网怎么登录
  • 对php网站开发技术课程总结Nginx伪静态WordPress
  • 网站备案登记网站设计步骤详解
  • 白石桥做网站公司制作灯笼的材料
  • 查询网站空间的服务商网站死链删除
  • 搭建一个网站要多少中国世界排名
  • 企业网站的重要性网站建设交易平台
  • 安顺做网站台州响应式建站
  • 营销型网站策划建设微信小程序设计制作
  • 网站后台费用流控插件wordpress
  • 哪些网站怎么进网站制作服务好的商家
  • 网站域名要怎样规划南通建设局网站查询
  • 新东方研学网站那家公司做的扬中网站建设好么
  • 东莞市专注网站建设中江移动网站建设
  • 流媒体网站建设规划 所需设备关于医疗保障局门户网站建设
  • 手机app是用什么软件开发的长沙seo网站建设袁飞最好
  • 建论坛型网站微信公众平台公众号
  • 浚县网站建设东莞市建设工程检测中心网站
  • 青岛谷歌网站建设装饰设计公司资质
  • 建设银行网站注销春节网站怎么做
  • 将网站制作成app建设网站的分析
  • 网站模板代理电话自己做网站大概需要多少钱
  • 英选 网站开发蒲县网站建设
  • 大连网站建站美工设计
  • 梦幻创意网站建设微信推广文案范文
  • 模板网站 可以做推广吗企业网站建设市场的另一面